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) • 639 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoConnectionOptionError = void 0;
const TypeORMError_1 = require("./TypeORMError");
/**
* Thrown when some option is not set in the connection options.
*/
class NoConnectionOptionError extends TypeORMError_1.TypeORMError {
constructor(optionName) {
super(`Option "${optionName}" is not set in your connection options, please ` +
`define "${optionName}" option in your connection options or ormconfig.json`);
}
}
exports.NoConnectionOptionError = NoConnectionOptionError;
//# sourceMappingURL=NoConnectionOptionError.js.map
;