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: * This exception is thrown whenever any argument or parameter is invalid.
16: *
17: * @package DcGeneral\Exception
18: */
19: class DcGeneralInvalidArgumentException extends \InvalidArgumentException
20: {
21: }
22: