IoException.php 518B

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. * I/O Exception class.
  11. * @package Swift
  12. * @author Chris Corbyn
  13. */
  14. class Swift_IoException extends Swift_SwiftException
  15. {
  16. /**
  17. * Create a new IoException with $message.
  18. * @param string $message
  19. */
  20. public function __construct($message)
  21. {
  22. parent::__construct($message);
  23. }
  24. }