typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
16 lines (14 loc) • 692 B
JavaScript
import { __extends } from "tslib";
import { TypeORMError } from "./TypeORMError";
/**
* Thrown when consumer tries to execute operation allowed only if connection is opened.
*/
var CannotExecuteNotConnectedError = /** @class */ (function (_super) {
__extends(CannotExecuteNotConnectedError, _super);
function CannotExecuteNotConnectedError(connectionName) {
return _super.call(this, "Cannot execute operation on \"" + connectionName + "\" connection because connection is not yet established.") || this;
}
return CannotExecuteNotConnectedError;
}(TypeORMError));
export { CannotExecuteNotConnectedError };
//# sourceMappingURL=CannotExecuteNotConnectedError.js.map