1.0.3 • Published 3 years ago

@heviir/http-errors v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

http-errors

import httpErrors from 'http-errors';
const data = {}; // optional
const err = new httpErrors.Unauthorized(data);

err.code; // 401
err.message; // "Unauthorized"
err.type; // "Unauthorized"
err.data; // data
new httpErrors.GatewayTimeout().message; // "Gateway Timeout"