1<?php 2 3/** 4 * Swift File Exception 5 * Please read the LICENSE file 6 * @copyright Chris Corbyn <chris@w3style.co.uk> 7 * @author Chris Corbyn <chris@w3style.co.uk> 8 * @package Swift 9 * @license GNU Lesser General Public License 10 */ 11 12require_once dirname(__FILE__) . "/ClassLoader.php"; 13Swift_ClassLoader::load("Swift_Exception"); 14 15/** 16 * Swift File Exception 17 * @package Swift 18 * @author Chris Corbyn <chris@w3style.co.uk> 19 */ 20class Swift_FileException extends Swift_Exception 21{ 22} 23