TYPO3 API  SVNRelease
TransportException.php
Go to the documentation of this file.
00001 <?php
00002 
00003 /*
00004  * This file is part of SwiftMailer.
00005  * (c) 2004-2009 Chris Corbyn
00006  *
00007  * For the full copyright and license information, please view the LICENSE
00008  * file that was distributed with this source code.
00009  */
00010 
00011 //@require 'Swift/IoException.php';
00012 
00013 /**
00014  * TransportException thrown when an error occurs in the Transport subsystem.
00015  * @package Swift
00016  * @subpackage Transport
00017  * @author Chris Corbyn
00018  */
00019 class Swift_TransportException extends Swift_IoException
00020 {
00021 
00022   /**
00023    * Create a new TransportException with $message.
00024    * @param string $message
00025    */
00026   public function __construct($message)
00027   {
00028     parent::__construct($message);
00029   }
00030 
00031 }