typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
17 lines (15 loc) • 642 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.DriverPackageNotInstalledError = void 0;
const TypeORMError_1 = require("./TypeORMError");
/**
* Thrown when required driver's package is not installed.
*/
class DriverPackageNotInstalledError extends TypeORMError_1.TypeORMError {
constructor(driverName, packageName) {
super(`${driverName} package has not been found installed. ` +
`Try to install it: npm install ${packageName} --save`);
}
}
exports.DriverPackageNotInstalledError = DriverPackageNotInstalledError;
//# sourceMappingURL=DriverPackageNotInstalledError.js.map
;