RoundingNecessaryException.php 508 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. namespace Brick\Math\Exception;
  4. /**
  5. * Exception thrown when a number cannot be represented at the requested scale without rounding.
  6. */
  7. class RoundingNecessaryException extends MathException
  8. {
  9. /**
  10. * @return RoundingNecessaryException
  11. *
  12. * @psalm-pure
  13. */
  14. public static function roundingNecessary() : RoundingNecessaryException
  15. {
  16. return new self('Rounding is necessary to represent the result of the operation at this scale.');
  17. }
  18. }