1: <?php
2: /**
3: * PHP version 5
4: * @package generalDriver
5: * @author Christian Schiffler <c.schiffler@cyberspectrum.de>
6: * @author Stefan Heimes <stefan_heimes@hotmail.com>
7: * @copyright The MetaModels team.
8: * @license LGPL.
9: * @filesource
10: */
11:
12: namespace DcGeneral\Exception;
13:
14: /**
15: * Exception thrown if an error which can only be found on runtime occurs in DcGeneral.
16: *
17: * @package DcGeneral\Exception
18: */
19: class DcGeneralRuntimeException extends \RuntimeException
20: {
21: }
22: