CodeDog Server异常错误类型。遇到异常时,需要抛出ServerError,指定code和msg:: raise ServerError(100, "server error msg")
| 36 | |
| 37 | |
| 38 | class ServerError(CDErrorBase): |
| 39 | """ |
| 40 | CodeDog Server异常错误类型。遇到异常时,需要抛出ServerError,指定code和msg:: |
| 41 | |
| 42 | raise ServerError(100, "server error msg") |
| 43 | """ |
| 44 | pass |
| 45 | |
| 46 | |
| 47 | class BaseServerError(Exception): |
no outgoing calls
no test coverage detected