"use strict";
|
Object.defineProperty(exports, "__esModule", { value: true });
|
var tslib_1 = require("tslib");
|
var index_1 = require("../index");
|
/**
|
* Thrown when no result could be found in methods which are not allowed to return undefined or an empty set.
|
*/
|
var EntityNotFoundError = /** @class */ (function (_super) {
|
tslib_1.__extends(EntityNotFoundError, _super);
|
function EntityNotFoundError(entityClass, criteria) {
|
var _this = _super.call(this) || this;
|
_this.name = "EntityNotFound";
|
Object.setPrototypeOf(_this, EntityNotFoundError.prototype);
|
var targetName;
|
if (entityClass instanceof index_1.EntitySchema) {
|
targetName = entityClass.options.name;
|
}
|
else if (typeof entityClass === "function") {
|
targetName = entityClass.name;
|
}
|
else {
|
targetName = entityClass;
|
}
|
var criteriaString = _this.stringifyCriteria(criteria);
|
_this.message = "Could not find any entity of type \"" + targetName + "\" matching: " + criteriaString;
|
return _this;
|
}
|
EntityNotFoundError.prototype.stringifyCriteria = function (criteria) {
|
try {
|
return JSON.stringify(criteria, null, 4);
|
}
|
catch (e) { }
|
return "" + criteria;
|
};
|
return EntityNotFoundError;
|
}(Error));
|
exports.EntityNotFoundError = EntityNotFoundError;
|
|
//# sourceMappingURL=EntityNotFoundError.js.map
|