Preparing to remove the bundled PHPTAL and let the PHPTAL skins (if enabled) work...
[mediawiki.git] / PHPTAL-NP-0.7.0 / libs / Types / Errors.php
blobb15ee91bf6a3a2dc5b84dd7a0b36f06cb564f1c8
1 <?php
3 /**
4 * Container out of bound error.
5 */
6 class OutOfBounds extends PEAR_Error {}
8 /**
9 * Unable to locate some data somewhere.
11 * This kind of exception was introduced by tof template context.
13 class NameError extends PEAR_Error {}
15 /**
16 * Mismatched data type.
18 class TypeError extends PEAR_Error {}
20 /**
21 * Unable to locate a file.
23 class FileNotFound extends PEAR_Error {}
25 /**
26 * Input output error.
28 class IOException extends PEAR_Error {}