UNPKG

rfc9457

Version:

RFC 9457 Problem Details for HTTP APIs - A standardized error handling package for Node.js

15 lines 514 B
import { HttpError } from "../../core/index.js"; import { extractCause, getErrorType, normalizeToString, } from "../../helpers/index.js"; export class ConflictError extends HttpError { constructor(detail) { super({ type: getErrorType("conflict"), title: "Conflict", status: 409, detail: normalizeToString(detail), cause: extractCause(detail), }); this.name = "ConflictError"; } } //# sourceMappingURL=conflict-error.js.map