@ac-essentials/misc-util
    Preparing search index...

    Interface INodeSystemError

    Node System Error interface (Error with code, errno, syscall and optional path and dest properties)

    interface INodeSystemError {
        cause?: unknown;
        code: string;
        dest?: string;
        errno: number;
        info: NodeSystemErrorInfo;
        message: string;
        name: string;
        path?: string;
        stack?: string;
        syscall: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cause?: unknown
    code: string

    The error code

    dest?: string
    errno: number

    The uv error context

    message: string
    name: string
    path?: string
    stack?: string
    syscall: string