/** * Raised when the requested connection doesn't exists in TypeORM. */ export declare class ConnectionNotFoundError extends Error { private connectionName?; name: string; get message(): string; /** * Creates a new ManagerNotFoundError what is raised when we cannot request a manager from TypeORM. * @param type type of the requested manager * @param connectionName optional name of the manager */ constructor(connectionName?: string); }