1: <?php
2:
3: /**
4: * This file contains the cDomainException class.
5: *
6: * @package Core
7: * @subpackage Exception
8: *
9: * @author Simon Sprankel
10: * @copyright four for business AG <www.4fb.de>
11: * @license http://www.contenido.org/license/LIZENZ.txt
12: * @link http://www.4fb.de
13: * @link http://www.contenido.org
14: */
15:
16: /**
17: * Exception thrown if a value does not adhere to a defined valid data domain.
18: * You should use this CONTENIDO exception instead of the standard PHP
19: * {@link DomainException}.
20: * This exception type is logged to data/logs/exception.txt.
21: */
22: class cDomainException extends cLogicException {
23: }
24: