| 48 | |
| 49 | |
| 50 | class FailureException(DomainException): |
| 51 | def type(self) -> str: |
| 52 | return "failure" |
| 53 | |
| 54 | def code(self) -> int: |
| 55 | return 422 |
| 56 | |
| 57 | |
| 58 | class FailedException(DomainException): |
nothing calls this directly
no outgoing calls
no test coverage detected