/framework/vendor/swift/lib/classes/Swift/Events/TransportExceptionListener.php
http://zoop.googlecode.com/ · PHP · 30 lines · 6 code · 5 blank · 19 comment · 0 complexity · d5a5d2841e382b1824be87dfaf233bc3 MD5 · raw file
- <?php
- /*
- * This file is part of SwiftMailer.
- * (c) 2004-2009 Chris Corbyn
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- //@require 'Swift/Events/EventListener.php';
- //@require 'Swift/Events/TransportExceptionEvent.php';
- /**
- * Listens for Exceptions thrown from within the Transport system.
- * @package Swift
- * @subpackage Events
- * @author Chris Corbyn
- */
- interface Swift_Events_TransportExceptionListener
- extends Swift_Events_EventListener
- {
-
- /**
- * Invoked as a TransportException is thrown in the Transport system.
- * @param Swift_Events_TransportExceptionEvent $evt
- */
- public function exceptionThrown(Swift_Events_TransportExceptionEvent $evt);
-
- }