ajsfw
Version:
Ajs Framework
36 lines (35 loc) • 1.77 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var exceptions_1 = require("ajsfw/exceptions");
var FailedToLoadTemplatesException = (function (_super) {
__extends(FailedToLoadTemplatesException, _super);
function FailedToLoadTemplatesException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return FailedToLoadTemplatesException;
}(exceptions_1.Exception));
exports.FailedToLoadTemplatesException = FailedToLoadTemplatesException;
var MissingTemplateNameException = (function (_super) {
__extends(MissingTemplateNameException, _super);
function MissingTemplateNameException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return MissingTemplateNameException;
}(exceptions_1.Exception));
exports.MissingTemplateNameException = MissingTemplateNameException;
var MissingVisualComponentNameException = (function (_super) {
__extends(MissingVisualComponentNameException, _super);
function MissingVisualComponentNameException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return MissingVisualComponentNameException;
}(exceptions_1.Exception));
exports.MissingVisualComponentNameException = MissingVisualComponentNameException;
var FailedToLoadTemplateStylesheetsException = (function (_super) {
__extends(FailedToLoadTemplateStylesheetsException, _super);
function FailedToLoadTemplateStylesheetsException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return FailedToLoadTemplateStylesheetsException;
}(exceptions_1.Exception));
exports.FailedToLoadTemplateStylesheetsException = FailedToLoadTemplateStylesheetsException;