diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-20 19:23:42 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-20 19:23:42 +0100 |
commit | 103578448db0ce03ea231a10e8234b2d8cb27e34 (patch) | |
tree | d903ab3b16949fa3b75ec96718cf7c4547401932 /framework/Exceptions/TInvalidDataValueException.php | |
parent | 169950e09cad0e69a7dcbcdabe7ef86086766483 (diff) |
One class per file: framework/Exceptions/
Diffstat (limited to 'framework/Exceptions/TInvalidDataValueException.php')
-rw-r--r-- | framework/Exceptions/TInvalidDataValueException.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/framework/Exceptions/TInvalidDataValueException.php b/framework/Exceptions/TInvalidDataValueException.php new file mode 100644 index 00000000..075bb871 --- /dev/null +++ b/framework/Exceptions/TInvalidDataValueException.php @@ -0,0 +1,23 @@ +<?php +/** + * Exception classes file + * + * @author Qiang Xue <qiang.xue@gmail.com> + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005-2014 PradoSoft + * @license http://www.pradosoft.com/license/ + * @package System.Exceptions + */ + +/** + * TInvalidDataValueException class + * + * TInvalidDataValueException represents an exception caused by invalid data value. + * + * @author Qiang Xue <qiang.xue@gmail.com> + * @package System.Exceptions + * @since 3.0 + */ +class TInvalidDataValueException extends TSystemException +{ +}
\ No newline at end of file |