(cause string, lasterr error)
| 331 | } |
| 332 | |
| 333 | func NewResourceNotFoundException(cause string, lasterr error) FinalError { |
| 334 | return NewGenericException(BasicError{ |
| 335 | Code: ResourceNotFoundException, |
| 336 | Cause: cause, |
| 337 | Message: "The resource specified in the request does not exist", |
| 338 | Status: http.StatusNotFound, |
| 339 | }, lasterr) |
| 340 | } |
nothing calls this directly
no test coverage detected