项目内异常
| 10 | |
| 11 | |
| 12 | class AppApiException(Exception): |
| 13 | """ |
| 14 | 项目内异常 |
| 15 | """ |
| 16 | status_code = status.HTTP_200_OK |
| 17 | |
| 18 | def __init__(self, code, message): |
| 19 | self.code = code |
| 20 | self.message = message |
| 21 | |
| 22 | |
| 23 | class NotFound404(AppApiException): |
no outgoing calls
no test coverage detected