HTTP Response Error
npm install @yo1dog/http-response-errorHTTP Response Error
``javascript
const HTTPResponseError = require('@yo1dog/http-response-error');
const res = await request('https://www.example.com/fubar');
if (res.statusCode !== 200) {
throw new HTTPResponseError(res, Unable to get fubar.);`
}
param | type | description
----------|----------|-------------
res | Response | Response object.message | string | A human-readable description of the error.
-----