nexus-agents - v2.80.0
    Preparing search index...

    Interface ServerError

    Error type for server operations.

    interface ServerError {
        code:
            | "SERVER_CREATION_FAILED"
            | "SERVER_START_FAILED"
            | "SERVER_STOP_FAILED";
        message: string;
        cause?: Error;
    }
    Index

    Properties

    Properties

    code: "SERVER_CREATION_FAILED" | "SERVER_START_FAILED" | "SERVER_STOP_FAILED"
    message: string
    cause?: Error