Agent Client Protocol - v0.28.1
    Preparing search index...

    Type Alias ErrorResponse

    JSON-RPC error response payload.

    type ErrorResponse = {
        code: number;
        message: string;
        data?: unknown;
    }
    Index

    Properties

    Properties

    code: number

    JSON-RPC error code.

    message: string

    Human-readable error message.

    data?: unknown

    Optional structured error data.