Avail feature updated
[ninja.git] / application / vendor / swiftmailer / classes / Swift / TransportException.php
blobb7cd6589b4c5633dac67ba993bcecbdd892efc8c
1 <?php
3 /*
4 * This file is part of SwiftMailer.
5 * (c) 2004-2009 Chris Corbyn
7 * For the full copyright and license information, please view the LICENSE
8 * file that was distributed with this source code.
9 */
11 //@require 'Swift/IoException.php';
13 /**
14 * TransportException thrown when an error occurs in the Transport subsystem.
15 * @package Swift
16 * @subpackage Transport
17 * @author Chris Corbyn
19 class Swift_TransportException extends Swift_IoException
22 /**
23 * Create a new TransportException with $message.
24 * @param string $message
26 public function __construct($message)
28 parent::__construct($message);