|
TYPO3 API
SVNRelease
|
00001 <?php 00002 00003 /* 00004 * This file is part of SwiftMailer. 00005 * (c) 2004-2009 Chris Corbyn 00006 * 00007 * For the full copyright and license information, please view the LICENSE 00008 * file that was distributed with this source code. 00009 */ 00010 00011 //@require 'Swift/Events/EventListener.php'; 00012 //@require 'Swift/Events/TransportExceptionEvent.php'; 00013 00014 /** 00015 * Listens for Exceptions thrown from within the Transport system. 00016 * @package Swift 00017 * @subpackage Events 00018 * @author Chris Corbyn 00019 */ 00020 interface Swift_Events_TransportExceptionListener 00021 extends Swift_Events_EventListener 00022 { 00023 00024 /** 00025 * Invoked as a TransportException is thrown in the Transport system. 00026 * @param Swift_Events_TransportExceptionEvent $evt 00027 */ 00028 public function exceptionThrown(Swift_Events_TransportExceptionEvent $evt); 00029 00030 }
1.8.0