/framework/vendor/swift/lib/classes/Swift/TransportException.php
http://zoop.googlecode.com/ · PHP · 31 lines · 8 code · 5 blank · 18 comment · 0 complexity · a4601216a0fae9195f33f2fdbc610609 MD5 · raw file
- <?php
- /*
- * This file is part of SwiftMailer.
- * (c) 2004-2009 Chris Corbyn
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- //@require 'Swift/IoException.php';
- /**
- * TransportException thrown when an error occurs in the Transport subsystem.
- * @package Swift
- * @subpackage Transport
- * @author Chris Corbyn
- */
- class Swift_TransportException extends Swift_IoException
- {
-
- /**
- * Create a new TransportException with $message.
- * @param string $message
- */
- public function __construct($message)
- {
- parent::__construct($message);
- }
-
- }