UNPKG

@daisugi/kintsugi

Version:

Kintsugi is a set of utilities to help build a fault tolerant services.

10 lines 268 B
export class CustomError extends Error { code; constructor(message, code) { super(message); this.code = code; this.name = code; Object.setPrototypeOf(this, CustomError.prototype); } } //# sourceMappingURL=custom_error.js.map