diff options
Diffstat (limited to 'lib/phptal/PHPTAL/VariableNotFoundException.php')
-rw-r--r-- | lib/phptal/PHPTAL/VariableNotFoundException.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/phptal/PHPTAL/VariableNotFoundException.php b/lib/phptal/PHPTAL/VariableNotFoundException.php new file mode 100644 index 0000000..dfadaf2 --- /dev/null +++ b/lib/phptal/PHPTAL/VariableNotFoundException.php @@ -0,0 +1,24 @@ +<?php +/** + * PHPTAL templating engine + * + * PHP Version 5 + * + * @category HTML + * @package PHPTAL + * @author Laurent Bedubourg <lbedubourg@motion-twin.com> + * @author Kornel LesiĆski <kornel@aardvarkmedia.co.uk> + * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License + * @version SVN: $Id$ + * @link http://phptal.org/ + */ + +/** + * Runtime error in TALES expression + * + * @package PHPTAL + * @subpackage Exception + */ +class PHPTAL_VariableNotFoundException extends PHPTAL_TemplateException +{ +} |