UNPKG

xcraft-global-agent

Version:

Global HTTP/HTTPS proxy configurable using environment variables.

12 lines (8 loc) 257 B
import ExtendableError from 'es6-error'; export class UnexpectedStateError extends ExtendableError { public code: string; public constructor (message: string, code: string = 'UNEXPECTED_STATE_ERROR') { super(message); this.code = code; } }