未认证(未登录)异常
| 32 | |
| 33 | |
| 34 | class AppAuthenticationFailed(AppApiException): |
| 35 | """ |
| 36 | 未认证(未登录)异常 |
| 37 | """ |
| 38 | status_code = status.HTTP_401_UNAUTHORIZED |
| 39 | |
| 40 | def __init__(self, code, message): |
| 41 | self.code = code |
| 42 | self.message = message |
| 43 | |
| 44 | |
| 45 | class AppUnauthorizedFailed(AppApiException): |
no outgoing calls
no test coverage detected