CodeDog Server异常错误类型。遇到异常时,需要抛出ServerError,指定code和msg:: raise ServerError(100, "server error msg")
| 49 | |
| 50 | |
| 51 | class ServerError(CDErrorBase): |
| 52 | """ |
| 53 | CodeDog Server异常错误类型。遇到异常时,需要抛出ServerError,指定code和msg:: |
| 54 | |
| 55 | raise ServerError(100, "server error msg") |
| 56 | """ |
| 57 | pass |
| 58 | |
| 59 | |
| 60 | class ServerConfigError(ServerError): |
no outgoing calls
no test coverage detected