-
Notifications
You must be signed in to change notification settings - Fork 6
Common exceptions
Roberto Prevato edited this page Sep 21, 2019
·
1 revision
Common exception classes.
| Type | Description |
|---|---|
| InvalidArgument | A given argument is invalid due to input error. |
| EmptyArgumentException | A required argument is null or empty. |
| InvalidOperation | An attempted operation is not valid or does not make sense in a certain context. |
| AcceptedException | An operation cannot be fully completed, but doesn't imply failure. |
| ObjectNotFound | An object that is necessary to complete an operation is not found. |
| UnauthorizedException | The user is not authorized. |
| ForbiddenException | The user who is attempting the operation doesn't have rights to do it. |
| NotImplementedException | A feature is not implemented. |
| OperationFailedException | Generic failed operation. |
| SystemException | Generic system exception. |