UNPKG

@bitblit/ratchet-epsilon-common

Version:

Tiny adapter to simplify building API gateway Lambda APIS

10 lines 413 B
import { RestfulApiHttpError } from '@bitblit/ratchet-common/network/restful-api-http-error'; export class BadRequestError extends RestfulApiHttpError { static HTTP_CODE = 400; constructor(...errors) { super(...errors); Object.setPrototypeOf(this, BadRequestError.prototype); this.withHttpStatusCode(BadRequestError.HTTP_CODE); } } //# sourceMappingURL=bad-request-error.js.map