/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

  1. <?php
  2. /*
  3. * This file is part of SwiftMailer.
  4. * (c) 2004-2009 Chris Corbyn
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. //@require 'Swift/Events/EventListener.php';
  10. //@require 'Swift/Events/TransportExceptionEvent.php';
  11. /**
  12. * Listens for Exceptions thrown from within the Transport system.
  13. * @package Swift
  14. * @subpackage Events
  15. * @author Chris Corbyn
  16. */
  17. interface Swift_Events_TransportExceptionListener
  18. extends Swift_Events_EventListener
  19. {
  20. /**
  21. * Invoked as a TransportException is thrown in the Transport system.
  22. * @param Swift_Events_TransportExceptionEvent $evt
  23. */
  24. public function exceptionThrown(Swift_Events_TransportExceptionEvent $evt);
  25. }