MathException.php 156 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace Brick\Math\Exception;
  4. /**
  5. * Base class for all math exceptions.
  6. */
  7. class MathException extends \Exception
  8. {
  9. }