"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;