| 1 | <?php |
||
| 10 | class NumberNotBetweenException extends ArgumentException |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param string $variableName |
||
| 14 | * @param int|float $variableValue |
||
| 15 | * @param int|float $from |
||
| 16 | * @param int|float $to |
||
| 17 | * @throws InvalidIntOrFloatException |
||
| 18 | * @throws InvalidStringException |
||
| 19 | */ |
||
| 20 | 6 | public function __construct($variableName, $variableValue, $from, $to) |
|
| 42 | } |