DivisionByZeroException.php 874 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. declare(strict_types=1);
  3. namespace Brick\Math\Exception;
  4. /**
  5. * Exception thrown when a division by zero occurs.
  6. */
  7. class DivisionByZeroException extends MathException
  8. {
  9. /**
  10. * @return DivisionByZeroException
  11. *
  12. * @psalm-pure
  13. */
  14. public static function divisionByZero() : DivisionByZeroException
  15. {
  16. return new self('Division by zero.');
  17. }
  18. /**
  19. * @return DivisionByZeroException
  20. *
  21. * @psalm-pure
  22. */
  23. public static function modulusMustNotBeZero() : DivisionByZeroException
  24. {
  25. return new self('The modulus must not be zero.');
  26. }
  27. /**
  28. * @return DivisionByZeroException
  29. *
  30. * @psalm-pure
  31. */
  32. public static function denominatorMustNotBeZero() : DivisionByZeroException
  33. {
  34. return new self('The denominator of a rational number cannot be zero.');
  35. }
  36. }