15 lines
179 B
PHP
15 lines
179 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Brick\Math\Exception;
|
|
|
|
use Throwable;
|
|
|
|
/**
|
|
* Base interface for all math exceptions.
|
|
*/
|
|
interface MathException extends Throwable
|
|
{
|
|
}
|