We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0a5c66 commit 1ec40f4Copy full SHA for 1ec40f4
CHANGELOG.md
@@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
7
💥 **Breaking changes**
8
9
- `BigDecimal::ofUnscaledValue()` no longer throws an exception if the scale is negative
10
+- `MathException` now extends `RuntimeException` instead of `Exception`; this reverts the change introduced in version `0.11.0` (#82)
11
12
✨ **New features**
13
src/Exception/MathException.php
@@ -7,6 +7,6 @@
/**
* Base class for all math exceptions.
*/
-class MathException extends \Exception
+class MathException extends \RuntimeException
{
}
0 commit comments