UNPKG

@daisugi/kintsugi

Version:

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

11 lines (10 loc) 214 B
export class CustomError extends Error { constructor( message: string, readonly code: string, ) { super(message); this.name = code; Object.setPrototypeOf(this, CustomError.prototype); } }