Interface ErrorMessage

Represents an error condition in the IPC system. Provides both a high-level error message and detailed debugging information.

interface ErrorMessage {
    details: string;
    error: string;
}

Hierarchy

  • Pick<Required<BaseMessage>, "error" | "details">
    • ErrorMessage

Properties

Properties

details: string

Additional error context or stack trace information

error: string

Description of any error that occurred