MathException.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | declare (strict_types=1); |
| 4 | namespace ProfilePressVendor\Brick\Math\Exception; |
| 5 | |
| 6 | /** |
| 7 | * Base class for all math exceptions. |
| 8 | * |
| 9 | * This class is abstract to ensure that only fine-grained exceptions are thrown throughout the code. |
| 10 | */ |
| 11 | class MathException extends \RuntimeException |
| 12 | { |
| 13 | } |
| 14 |