UNPKG

@breautek/storm

Version:

Object-Oriented REST API framework

18 lines (17 loc) 550 B
import { StormError } from './StormError'; import { ErrorCode } from './ErrorCode'; import { StatusCode } from './StatusCode'; import { ExitCode } from './ExitCode'; interface IMissingConfigErrorDetails { path: string; } export declare class MissingConfigError extends StormError<IMissingConfigErrorDetails> { constructor(path: string); getMessage(): string; getCode(): ErrorCode; getHTTPCode(): StatusCode; getExitCode(): ExitCode; getLocaleCode(): string; getLocaleParameters(): Record<string, string>; } export {};