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