| 1 | <?php |
||
| 7 | class InvalidArgumentException extends \Exception |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return InvalidArgumentException |
||
| 11 | */ |
||
| 12 | public static function arraySizeNotMatch() |
||
| 13 | { |
||
| 14 | return new self('Size of given arrays not match'); |
||
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param $name |
||
| 19 | * |
||
| 20 | * @return InvalidArgumentException |
||
| 21 | */ |
||
| 22 | public static function percentNotInRange($name) |
||
| 26 | } |
||
| 27 |