Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
34 | class NumberFormatException extends \Exception |
||
35 | { |
||
36 | |||
37 | /** |
||
38 | * Factory method for making a <code>NumberFormatException</code> |
||
39 | * given the specified input which caused the error. |
||
40 | * |
||
41 | * @param string $message The input causing the error |
||
42 | * |
||
43 | * @return void |
||
44 | * @throws \AppserverIo\Lang\NumberFormatException The number format exception itself |
||
45 | */ |
||
46 | 4 | public static function forInputString($message) |
|
51 |