InvalidState 状态异常
(err string)
| 50 | |
| 51 | // InvalidState 状态异常 |
| 52 | func (e *APIError) InvalidState(err string) *APIError { |
| 53 | return e.dup().appendCode(http.StatusBadRequest, "InvalidState"). |
| 54 | appendLocaleTemplate(templateInvalidState, err) |
| 55 | } |
| 56 | |
| 57 | // NotLogin 未登录 |
| 58 | func (e *APIError) NotLogin() *APIError { |
nothing calls this directly
no test coverage detected