1: <?php
2: /**
3: * This file contains the cRangeException 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 to indicate range errors during program execution.
17: * Normally this means there was an arithmetic error other than under/overflow.
18: * This is the runtime version of {@link cDomainException}.
19: * You should use this CONTENIDO exception instead of the standard PHP
20: * {@link RangeException}.
21: * This exception type is logged to data/logs/exception.txt.
22: */
23: class cRangeException extends cRuntimeException {
24:
25: }
26: