| 72 | |
| 73 | |
| 74 | class UnprocessableEntityException(DomainException): |
| 75 | def type(self) -> str: |
| 76 | return "unprocessable" |
| 77 | |
| 78 | def code(self) -> int: |
| 79 | return 422 |
| 80 | |
| 81 | |
| 82 | class ForbiddenException(DomainException): |
no outgoing calls
no test coverage detected