NewValidationException xxx
(cause, message string, lasterr error)
| 182 | |
| 183 | // NewValidationException xxx |
| 184 | func NewValidationException(cause, message string, lasterr error) FinalError { |
| 185 | return NewGenericException(BasicError{ |
| 186 | Code: ValidationException, |
| 187 | Cause: cause, |
| 188 | Message: message, |
| 189 | Status: http.StatusBadRequest, |
| 190 | }, lasterr) |
| 191 | } |
| 192 | |
| 193 | // NewInvalidParameterValueException xxx |
| 194 | func NewInvalidParameterValueException(cause string, lasterr error) FinalError { |
nothing calls this directly
no test coverage detected