1: <?php
2: /**
3: * This file contains the cUnexpectedValueException class.
4: *
5: * @package Core
6: * @subpackage Exception
7: *
8: * @author Simon Sprankel
9: * @copyright four for business AG <www.4fb.de>
10: * @license http://www.contenido.org/license/LIZENZ.txt
11: * @link http://www.4fb.de
12: * @link http://www.contenido.org
13: */
14:
15: /**
16: * Exception thrown if a value does not match with a set of values.
17: * Typically this happens when a function calls another function and expects the
18: * return value to be of a certain type or value not including arithmetic or
19: * buffer related errors.
20: * You should use this CONTENIDO exception instead of the standard PHP
21: * {@link UnexpectedValueException}.
22: * This exception type is logged to data/logs/exception.txt.
23: */
24: class cUnexpectedValueException extends cRuntimeException {
25:
26: }
27: