NewAccountProblemException xxx
(cause string, lasterr error)
| 302 | |
| 303 | // NewAccountProblemException xxx |
| 304 | func NewAccountProblemException(cause string, lasterr error) FinalError { |
| 305 | return NewGenericException(BasicError{ |
| 306 | Code: AccountProblemException, |
| 307 | Cause: cause, |
| 308 | Message: "There is a problem with your account", |
| 309 | Status: http.StatusForbidden, |
| 310 | }, lasterr) |
| 311 | } |
| 312 | |
| 313 | // NewInvalidInvokeCallerException xxx |
| 314 | func NewInvalidInvokeCallerException(cause string, lasterr error) FinalError { |
nothing calls this directly
no test coverage detected