|
TYPO3 API
SVNRelease
|
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 /** 00012 * Base Exception class. 00013 * @package Swift 00014 * @author Chris Corbyn 00015 */ 00016 class Swift_SwiftException extends Exception 00017 { 00018 00019 /** 00020 * Create a new SwiftException with $message. 00021 * @param string $message 00022 */ 00023 public function __construct($message) 00024 { 00025 parent::__construct($message); 00026 } 00027 00028 }
1.8.0