UNPKG

439 BTypeScriptView Raw
1import { Exception } from '@poppinss/utils';
2/**
3 * Raised when unable to lookup a namespace
4 */
5export declare class IocLookupException extends Exception {
6 static lookupFailed(namespace: string): IocLookupException;
7 /**
8 * Invalid namespace type
9 */
10 static invalidNamespace(): IocLookupException;
11 /**
12 * Fake is missing and yet resolved
13 */
14 static missingFake(namespace: string): IocLookupException;
15}