UNPKG

alwz

Version:

Extendable library for typecasting

11 lines 258 B
export class ErrorValue extends Error { constructor(message, value, options) { super(message, options); this.value = value; } throw() { throw this; } } export default ErrorValue; //# sourceMappingURL=ErrorValue.mjs.map