1: <?php
2: /**
3: * This file contains the cRuntimeException 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 an error which can only be found on runtime occurs.
17: * This kind of exceptions should directly lead to a fix in your code.
18: * You should use this CONTENIDO exception instead of the standard PHP
19: * {@link RuntimeException}.
20: * This exception type is logged to data/logs/exception.txt.
21: */
22: class cRuntimeException extends cException {
23:
24: }
25: