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) 432 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown when required driver's package is not installed. */ export class DriverPackageNotInstalledError extends TypeORMError { constructor(driverName, packageName) { super(`${driverName} package has not been found installed. ` + `Try to install it: npm install ${packageName} --save`); } } //# sourceMappingURL=DriverPackageNotInstalledError.js.map