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) • 554 B
JavaScript
import { __extends } from "tslib";
import { TypeORMError } from "./TypeORMError";
/**
* Thrown when consumer tries to get connection that does not exist.
*/
var ConnectionNotFoundError = /** @class */ (function (_super) {
__extends(ConnectionNotFoundError, _super);
function ConnectionNotFoundError(name) {
return _super.call(this, "Connection \"" + name + "\" was not found.") || this;
}
return ConnectionNotFoundError;
}(TypeORMError));
export { ConnectionNotFoundError };
//# sourceMappingURL=ConnectionNotFoundError.js.map