UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

12 lines (10 loc) 421 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown when consumer tries to connect when he already connected. */ export class CannotConnectAlreadyConnectedError extends TypeORMError { constructor(connectionName) { super(`Cannot create a "${connectionName}" connection because connection to the database already established.`); } } //# sourceMappingURL=CannotConnectAlreadyConnectedError.js.map