ajsfw
Version:
Ajs Framework
44 lines (43 loc) • 2.44 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var exceptions_1 = require("ajsfw/exceptions");
var VisualComponentNotRegisteredException = (function (_super) {
__extends(VisualComponentNotRegisteredException, _super);
function VisualComponentNotRegisteredException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return VisualComponentNotRegisteredException;
}(exceptions_1.Exception));
exports.VisualComponentNotRegisteredException = VisualComponentNotRegisteredException;
var InvalidAttributeIfValueException = (function (_super) {
__extends(InvalidAttributeIfValueException, _super);
function InvalidAttributeIfValueException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return InvalidAttributeIfValueException;
}(exceptions_1.Exception));
exports.InvalidAttributeIfValueException = InvalidAttributeIfValueException;
var SameViewComponentRegisteredAlreadyException = (function (_super) {
__extends(SameViewComponentRegisteredAlreadyException, _super);
function SameViewComponentRegisteredAlreadyException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return SameViewComponentRegisteredAlreadyException;
}(exceptions_1.Exception));
exports.SameViewComponentRegisteredAlreadyException = SameViewComponentRegisteredAlreadyException;
var ComponentDependenciesConfiguredAlreadyException = (function (_super) {
__extends(ComponentDependenciesConfiguredAlreadyException, _super);
function ComponentDependenciesConfiguredAlreadyException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return ComponentDependenciesConfiguredAlreadyException;
}(exceptions_1.Exception));
exports.ComponentDependenciesConfiguredAlreadyException = ComponentDependenciesConfiguredAlreadyException;
var InvalidViewComponentConfigurationArgumentException = (function (_super) {
__extends(InvalidViewComponentConfigurationArgumentException, _super);
function InvalidViewComponentConfigurationArgumentException() {
return _super !== null && _super.apply(this, arguments) || this;
}
return InvalidViewComponentConfigurationArgumentException;
}(exceptions_1.Exception));
exports.InvalidViewComponentConfigurationArgumentException = InvalidViewComponentConfigurationArgumentException;