You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A base class to implement entity types, which are defined by their identity rather than their attributes. Implementers are equal if their IDs are equal. Any equatable ID type can be used.
15
+
16
+
## Exceptions
17
+
18
+
### DomainException
19
+
20
+
Represents domain errors. Extensible for any domain-specific error.
21
+
22
+
### EntityNotFoundException
23
+
24
+
Extends `DomainException` to indicate that an entity could not be found.
25
+
26
+
### UnauthorizedException
27
+
28
+
Extends `DomainException` to indicate that the action being performed is not authorized.
0 commit comments