import { Exception } from '@dolittle/rudiments'; import { CollectionName } from './CollectionName'; /** * The exception that gets thrown when trying to copy projection read models to an invalid MongoDB collection name. */ export declare class InvalidCollectionName extends Exception { /** * Initialises a new instance of the {@link InvalidCollectionName} class. * @param {CollectionName} name - The collection name that is invalid. * @param {string} reason - The reason why the collection name is invalid. */ constructor(name: CollectionName, reason: string); } //# sourceMappingURL=InvalidCollectionName.d.ts.map