TYPO3 API  SVNRelease
DependencyException.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/SwiftException.php';
00012 
00013 /**
00014  * DependencyException thrown when a requested dependeny is missing.
00015  * @package Swift
00016  * @author Chris Corbyn
00017  */
00018 class Swift_DependencyException extends Swift_SwiftException
00019 {
00020 
00021   /**
00022    * Create a new DependencyException with $message.
00023    * @param string $message
00024    */
00025   public function __construct($message)
00026   {
00027     parent::__construct($message);
00028   }
00029 
00030 }