@technovilla/x-document
Version:
Javascript implementation of .NET XDocument
17 lines (16 loc) • 473 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var ElementNotFound = /** @class */ (function () {
function ElementNotFound(message) {
this.msg = message;
}
Object.defineProperty(ElementNotFound.prototype, "message", {
get: function () {
return this.msg;
},
enumerable: true,
configurable: true
});
return ElementNotFound;
}());
exports.ElementNotFound = ElementNotFound;