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

http://zoop.googlecode.com/ · PHP · 30 lines · 8 code · 5 blank · 17 comment · 0 complexity · 860eff7f96092b148a8cb19189e4f858 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/SwiftException.php';
  10. /**
  11. * I/O Exception class.
  12. * @package Swift
  13. * @author Chris Corbyn
  14. */
  15. class Swift_IoException extends Swift_SwiftException
  16. {
  17. /**
  18. * Create a new IoException with $message.
  19. * @param string $message
  20. */
  21. public function __construct($message)
  22. {
  23. parent::__construct($message);
  24. }
  25. }