UNPKG

529 BTypeScriptView Raw
1import * as NE from 'node-exceptions';
2export declare class RuntimeException extends NE.RuntimeException {
3 static readonly errorsDoc: string;
4 static missingConfig(key: string, configLocation: string): RuntimeException;
5 static missingAppKey(provider: string): RuntimeException;
6 static missingEnvKey(key: any): RuntimeException;
7 static incompleteConfig(missingKeys: string[], file: string, forKey?: string): RuntimeException;
8 static invoke(message: any, status?: number, code?: string): RuntimeException;
9}