Datalayer VS Code Extension - v0.0.9
    Preparing search index...

    Interface ErrorInfo

    Information extracted from an error for logging and display.

    interface ErrorInfo {
        cause?: Error;
        code: string;
        context?: Record<string, unknown>;
        message: string;
    }
    Index

    Properties

    cause?: Error

    Original error that caused this error (if available)

    code: string

    Error code for categorization and identification

    context?: Record<string, unknown>

    Additional context information about the error

    message: string

    Human-readable error message