UNPKG

702 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var tslib_1 = require("tslib");
4/**
5 *
6 */
7var EntityColumnNotFound = /** @class */ (function (_super) {
8 tslib_1.__extends(EntityColumnNotFound, _super);
9 function EntityColumnNotFound(propertyPath) {
10 var _this = _super.call(this) || this;
11 _this.name = "EntityColumnNotFound";
12 Object.setPrototypeOf(_this, EntityColumnNotFound.prototype);
13 _this.message = "No entity column \"" + propertyPath + "\" was found.";
14 return _this;
15 }
16 return EntityColumnNotFound;
17}(Error));
18exports.EntityColumnNotFound = EntityColumnNotFound;
19
20//# sourceMappingURL=EntityColumnNotFound.js.map