TransportException.php 608B

12345678910111213141516171819202122232425262728293031
  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. /**
  10. * TransportException thrown when an error occurs in the Transport subsystem.
  11. * @package Swift
  12. * @subpackage Transport
  13. * @author Chris Corbyn
  14. */
  15. class Swift_TransportException extends Swift_IoException
  16. {
  17. /**
  18. * Create a new TransportException with $message.
  19. * @param string $message
  20. */
  21. public function __construct($message)
  22. {
  23. parent::__construct($message);
  24. }
  25. }