| 56 | |
| 57 | |
| 58 | class FailedException(DomainException): |
| 59 | def type(self) -> str: |
| 60 | return "failed" |
| 61 | |
| 62 | def code(self) -> int: |
| 63 | return 422 |
| 64 | |
| 65 | |
| 66 | class UnauthorizedException(DomainException): |
nothing calls this directly
no outgoing calls
no test coverage detected