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

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