Interface ErrnoError

An error that represents a generic error with an associated error code.

interface ErrnoError {
    code: string;
    errno: number;
    message: string;
    name: string;
    stack?: string;
}

Hierarchy (View Summary)

Properties

code: string
errno: number
message: string
name: string
stack?: string