UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

13 lines (11 loc) 440 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown when user tries to insert using QueryBuilder but do not specify what to insert. */ export class InsertValuesMissingError extends TypeORMError { constructor() { super(`Cannot perform insert query because values are not defined. ` + `Call "qb.values(...)" method to specify inserted values.`); } } //# sourceMappingURL=InsertValuesMissingError.js.map