We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8953e7f commit 4680a55Copy full SHA for 4680a55
CHANGELOG.md
@@ -6,7 +6,7 @@ All notable changes to `laravel-specification-pattern` will be documented in thi
6
7
### Changed
8
9
-- Renamed `SpecificationException` to `DissatisfiedSpecification`.
+- Renamed `SpecificationException` to `DissatisfiedSpecification` and extend from `DomainException`.
10
- Marked the following classes as final:
11
- `AndSpecification`.
12
- `NotSpecification`.
src/DissatisfiedSpecification.php
@@ -4,8 +4,8 @@
4
5
namespace Maartenpaauw\Specifications;
-use Exception;
+use DomainException;
-final class DissatisfiedSpecification extends Exception
+final class DissatisfiedSpecification extends DomainException
{
}
0 commit comments