@cashfarm/lang
Version:
Extends TypeScript/Javascript with basic classes and functions
16 lines • 523 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const fqn_1 = require("./fqn");
let Exception = class Exception extends Error {
constructor(message) {
super(message);
Object.setPrototypeOf(this, new.target.prototype);
}
};
Exception = tslib_1.__decorate([
fqn_1.FQN('@cashfarm/lang.Exception'),
tslib_1.__metadata("design:paramtypes", [String])
], Exception);
exports.Exception = Exception;
//# sourceMappingURL=exception.js.map