typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
17 lines (15 loc) • 746 B
JavaScript
import { __extends } from "tslib";
import { TypeORMError } from "./TypeORMError";
/**
* Thrown when user tries to save/remove/etc. constructor-less object (object literal) instead of entity.
*/
var CannotDetermineEntityError = /** @class */ (function (_super) {
__extends(CannotDetermineEntityError, _super);
function CannotDetermineEntityError(operation) {
return _super.call(this, "Cannot " + operation + ", given value must be instance of entity class, " +
"instead object literal is given. Or you must specify an entity target to method call.") || this;
}
return CannotDetermineEntityError;
}(TypeORMError));
export { CannotDetermineEntityError };
//# sourceMappingURL=CannotDetermineEntityError.js.map