UNPKG

839 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var tslib_1 = require("tslib");
4/**
5 * Thrown . Theoretically can't be thrown.
6 */
7var PersistedEntityNotFoundError = /** @class */ (function (_super) {
8 tslib_1.__extends(PersistedEntityNotFoundError, _super);
9 function PersistedEntityNotFoundError() {
10 var _this = _super.call(this) || this;
11 _this.name = "PersistedEntityNotFoundError";
12 Object.setPrototypeOf(_this, PersistedEntityNotFoundError.prototype);
13 _this.message = "Internal error. Persisted entity was not found in the list of prepared operated entities.";
14 return _this;
15 }
16 return PersistedEntityNotFoundError;
17}(Error));
18exports.PersistedEntityNotFoundError = PersistedEntityNotFoundError;
19
20//# sourceMappingURL=PersistedEntityNotFoundError.js.map