inceptum
Version:
hipages take on the foundational library for enterprise-grade apps written in NodeJS
14 lines • 374 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IoCException = void 0;
class IoCException extends Error {
constructor(message, context) {
super(message);
this.context = context;
}
getContext() {
return this.context;
}
}
exports.IoCException = IoCException;
//# sourceMappingURL=IoCException.js.map