github/vendor/brick/math/src/Exception/MathException.php
2025-04-12 19:11:43 +08:00

13 lines
156 B
PHP
Executable File

<?php
declare(strict_types=1);
namespace Brick\Math\Exception;
/**
* Base class for all math exceptions.
*/
class MathException extends \Exception
{
}