/framework/vendor/swift/lib/classes/Swift/TransportException.php

http://zoop.googlecode.com/ · PHP · 31 lines · 8 code · 5 blank · 18 comment · 0 complexity · a4601216a0fae9195f33f2fdbc610609 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/IoException.php';
  10. /**
  11. * TransportException thrown when an error occurs in the Transport subsystem.
  12. * @package Swift
  13. * @subpackage Transport
  14. * @author Chris Corbyn
  15. */
  16. class Swift_TransportException extends Swift_IoException
  17. {
  18. /**
  19. * Create a new TransportException with $message.
  20. * @param string $message
  21. */
  22. public function __construct($message)
  23. {
  24. parent::__construct($message);
  25. }
  26. }