| 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 | public static function forInputString($message) |
||
| 50 | } |
||
| 51 |