import CodeError from "../error/codeError"; export default class ServiceNotFoundError extends CodeError { private readonly serviceName; private readonly instanceName; constructor(serviceName: string, instanceName: string); getServiceName(): string; getInstanceName(): string; }