blob: 075bb871d3c9afd4a430e38ad3387a476afbdf1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
{
}
|