UNPKG

806 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var tslib_1 = require("tslib");
4var TreeRepositoryNotSupportedError = /** @class */ (function (_super) {
5 tslib_1.__extends(TreeRepositoryNotSupportedError, _super);
6 function TreeRepositoryNotSupportedError(driver) {
7 var _this = _super.call(this) || this;
8 _this.name = "TreeRepositoryNotSupportedError";
9 Object.setPrototypeOf(_this, TreeRepositoryNotSupportedError.prototype);
10 _this.message = "Tree repositories are not supported in " + driver.options.type + " driver.";
11 return _this;
12 }
13 return TreeRepositoryNotSupportedError;
14}(Error));
15exports.TreeRepositoryNotSupportedError = TreeRepositoryNotSupportedError;
16
17//# sourceMappingURL=TreeRepositoryNotSupportedError.js.map