main
 1export declare class Fail extends Error {
 2    static DOCS_URL: string;
 3    static EXIT_CODES: Record<number, string>;
 4    static ERRNO_CODES: Record<number, string>;
 5    static formatExitMessage(code: number | null, signal: NodeJS.Signals | null, stderr: string, from: string, details?: string): string;
 6    static formatErrorMessage(err: NodeJS.ErrnoException, from: string): string;
 7    static formatErrorDetails(lines?: string[], lim?: number): string;
 8    static getExitCodeInfo(exitCode: number | null): string | undefined;
 9    static getCallerLocationFromString(stackString?: string): string;
10    static getCallerLocation(err?: Error): string;
11    static getErrnoMessage(errno?: number): string;
12}