| 31 | |
| 32 | |
| 33 | class InvitationTokenExpiredException(APIException): |
| 34 | status_code = status.HTTP_410_GONE |
| 35 | default_detail = "The invitation token has expired and is no longer valid." |
| 36 | default_code = "token_expired" |
| 37 | |
| 38 | |
| 39 | # Task Management Exceptions (non-HTTP) |
no outgoing calls
no test coverage detected