nexus-rpc
    Preparing search index...

    Type Alias HandlerErrorTypeExperimental

    An error type associated with a HandlerError, defined according to the Nexus specification.

    type HandlerErrorType = {
        BAD_REQUEST: "BAD_REQUEST";
        INTERNAL: "INTERNAL";
        NOT_FOUND: "NOT_FOUND";
        NOT_IMPLEMENTED: "NOT_IMPLEMENTED";
        RESOURCE_EXHAUSTED: "RESOURCE_EXHAUSTED";
        UNAUTHENTICATED: "UNAUTHENTICATED";
        UNAUTHORIZED: "UNAUTHORIZED";
        UNAVAILABLE: "UNAVAILABLE";
        UPSTREAM_TIMEOUT: "UPSTREAM_TIMEOUT";
    }
    Index

    Properties

    BAD_REQUEST: "BAD_REQUEST"

    The handler cannot or will not process the request due to an apparent client error.

    Clients should not retry this request unless advised otherwise.

    INTERNAL: "INTERNAL"

    An internal error occured.

    Subsequent requests by the client are permissible.

    NOT_FOUND: "NOT_FOUND"

    The requested resource could not be found but may be available in the future.

    NOT_IMPLEMENTED: "NOT_IMPLEMENTED"

    The server either does not recognize the request method, or it lacks the ability to fulfill the request. Clients should not retry this request unless advised otherwise.

    RESOURCE_EXHAUSTED: "RESOURCE_EXHAUSTED"

    Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space.

    Subsequent requests by the client are permissible.

    UNAUTHENTICATED: "UNAUTHENTICATED"

    The client did not supply valid authentication credentials for this request.

    Clients should not retry this request unless advised otherwise.

    UNAUTHORIZED: "UNAUTHORIZED"

    The caller does not have permission to execute the specified operation.

    Clients should not retry this request unless advised otherwise.

    UNAVAILABLE: "UNAVAILABLE"

    The service is currently unavailable.

    Subsequent requests by the client are permissible.

    UPSTREAM_TIMEOUT: "UPSTREAM_TIMEOUT"

    Used by gateways to report that a request to an upstream server has timed out.

    Subsequent requests by the client are permissible.