Files
BloomFeed-RSS/vendor/brick/math/src/Exception/MathException.php
T
2026-07-03 16:27:34 +02:00

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
{
}