| 25 | * return Promise.reject(new custom_errors.IncorrectOrMissingRequestParameter('YourErrorMessage')); |
| 26 | */ |
| 27 | class IncorrectOrMissingRequestParameter extends Error { |
| 28 | constructor(message) { |
| 29 | super(); |
| 30 | Error.captureStackTrace(this, this.constructor); |
nothing calls this directly
no outgoing calls
no test coverage detected