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