import { Exception } from '@dolittle/tooling.common.utilities'; /** * The exception that gets thrown when multiple tooling packages with the same name has been discovered * * @export * @class MultiplePackagesWithSameName * @extends {Exception} */ export declare class MultiplePackagesWithSameName extends Exception { /** * Instantiates an instance of {MultiplePackagesWithSameName}. * @param {string} message */ constructor(packageName: string); }