TransportException.php 636B

123456789101112131415161718192021222324252627282930
  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. *
  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. *
  21. * @param string $message
  22. */
  23. public function __construct($message)
  24. {
  25. parent::__construct($message);
  26. }
  27. }