ajsfw
Version:
Ajs Framework
20 lines (19 loc) • 870 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var exceptions_1 = require("ajsfw/exceptions");
var ApplicationNotConfiguredException = (function (_super) {
__extends(ApplicationNotConfiguredException, _super);
function ApplicationNotConfiguredException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return ApplicationNotConfiguredException;
}(exceptions_1.Exception));
exports.ApplicationNotConfiguredException = ApplicationNotConfiguredException;
var ApplicationException = (function (_super) {
__extends(ApplicationException, _super);
function ApplicationException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return ApplicationException;
}(exceptions_1.Exception));
exports.ApplicationException = ApplicationException;