UNPKG

node-web-mvc

Version:
13 lines (12 loc) 306 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Exception extends Error { constructor(message, data) { super(message); this.name = this.constructor.name; if (data) { this.data = data; } } } exports.default = Exception;