1: <?php
2:
3: /**
4: * This file contains the database exception class.
5: *
6: * @package Core
7: * @subpackage Database
8: * @author Dominik Ziegler
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: defined('CON_FRAMEWORK') || die('Illegal call: Missing framework initialization - request aborted.');
16:
17: /**
18: * Exception thrown if there is some fault in database connection.
19: * This exception type is logged to data/logs/exception.txt.
20: *
21: * @package Core
22: * @subpackage Database
23: */
24: class cDbException extends cException {
25: }
26: