typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
44 lines (42 loc) • 1.62 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EntityNotFoundError = void 0;
var tslib_1 = require("tslib");
var EntitySchema_1 = require("../entity-schema/EntitySchema");
var TypeORMError_1 = require("./TypeORMError");
/**
* 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.message = "Could not find any entity of type \"" + _this.stringifyTarget(entityClass) + "\" " +
("matching: " + _this.stringifyCriteria(criteria));
return _this;
}
EntityNotFoundError.prototype.stringifyTarget = function (target) {
if (target instanceof EntitySchema_1.EntitySchema) {
return target.options.name;
}
else if (typeof target === "function") {
return target.name;
}
else if (typeof target === "object" && "name" in target) {
return target.name;
}
else {
return target;
}
};
EntityNotFoundError.prototype.stringifyCriteria = function (criteria) {
try {
return JSON.stringify(criteria, null, 4);
}
catch (e) { }
return "" + criteria;
};
return EntityNotFoundError;
}(TypeORMError_1.TypeORMError));
exports.EntityNotFoundError = EntityNotFoundError;
//# sourceMappingURL=EntityNotFoundError.js.map