UNPKG

discord-ghost

Version:

A headless Discord-RPC client for Destiny 2

12 lines (11 loc) 262 B
/** ** * Basic implementation of https://nodejs.org/api/errors.html#errors_class_systemerror */ export class SystemError extends Error { public code?: string; public constructor(name?: string, code?: string) { super(name); this.code = code; } }