|
1
|
<?php |
|
2
|
|
|
3
|
declare (strict_types=1); |
|
4
|
namespace IAWPSCOPED\Brick\Math\Exception; |
|
5
|
|
|
6
|
/** |
|
7
|
* Exception thrown when attempting to perform an unsupported operation, such as a square root, on a negative number.
|
|
8
|
* @internal |
|
9
|
*/ |
|
10
|
class NegativeNumberException extends MathException |
|
11
|
{ |
|
12
|
} |
|
13
|
|