OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
brick
/
math
/
src
/
Exception
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:33:39 AM
rwxr-xr-x
📄
DivisionByZeroException.php
771 bytes
08/12/2024 10:33:38 AM
rw-r--r--
📄
IntegerOverflowException.php
549 bytes
08/12/2024 10:33:38 AM
rw-r--r--
📄
MathException.php
168 bytes
08/12/2024 10:33:38 AM
rw-r--r--
📄
NegativeNumberException.php
260 bytes
08/12/2024 10:33:38 AM
rw-r--r--
📄
NumberFormatException.php
1010 bytes
08/12/2024 10:33:39 AM
rw-r--r--
📄
RoundingNecessaryException.php
478 bytes
08/12/2024 10:33:39 AM
rw-r--r--
Editing: RoundingNecessaryException.php
Close
<?php declare(strict_types=1); namespace Brick\Math\Exception; /** * Exception thrown when a number cannot be represented at the requested scale without rounding. */ class RoundingNecessaryException extends MathException { /** * @psalm-pure */ public static function roundingNecessary() : RoundingNecessaryException { return new self('Rounding is necessary to represent the result of the operation at this scale.'); } }