NewNotImplementedException xxx
()
| 243 | |
| 244 | // NewNotImplementedException xxx |
| 245 | func NewNotImplementedException() FinalError { |
| 246 | return NewGenericException(BasicError{ |
| 247 | Code: NotImplementedException, |
| 248 | Message: "this method is not implemented", |
| 249 | Status: http.StatusInternalServerError, |
| 250 | }, nil) |
| 251 | } |
| 252 | |
| 253 | // NewGenericException xxx |
| 254 | func NewGenericException(err BasicError, lasterr error) FinalError { |
nothing calls this directly
no test coverage detected