nexus-rpc
    Preparing search index...

    Variable HandlerErrorType

    HandlerErrorType: {
        BAD_REQUEST: "BAD_REQUEST";
        CONFLICT: "CONFLICT";
        INTERNAL: "INTERNAL";
        NOT_FOUND: "NOT_FOUND";
        NOT_IMPLEMENTED: "NOT_IMPLEMENTED";
        REQUEST_TIMEOUT: "REQUEST_TIMEOUT";
        RESOURCE_EXHAUSTED: "RESOURCE_EXHAUSTED";
        UNAUTHENTICATED: "UNAUTHENTICATED";
        UNAUTHORIZED: "UNAUTHORIZED";
        UNAVAILABLE: "UNAVAILABLE";
        UNKNOWN: "UNKNOWN";
        UPSTREAM_TIMEOUT: "UPSTREAM_TIMEOUT";
    }

    Type Declaration

    • ReadonlyBAD_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.

    • ReadonlyCONFLICT: "CONFLICT"

      The request could not be made due to a conflict. This may happen when trying to create an operation that has already been started.

      Clients should not retry this request unless advised otherwise.

    • ReadonlyINTERNAL: "INTERNAL"

      An internal error occurred.

      Subsequent requests by the client are permissible.

    • ReadonlyNOT_FOUND: "NOT_FOUND"

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

    • ReadonlyNOT_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.

    • ReadonlyREQUEST_TIMEOUT: "REQUEST_TIMEOUT"

      Returned by the server when it has given up handling a request. This may occur by enforcing a client provided Request-Timeout or for any arbitrary reason such as enforcing some configurable limit.

      Subsequent requests by the client are permissible.

    • ReadonlyRESOURCE_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.

    • ReadonlyUNAUTHENTICATED: "UNAUTHENTICATED"

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

      Clients should not retry this request unless advised otherwise.

    • ReadonlyUNAUTHORIZED: "UNAUTHORIZED"

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

      Clients should not retry this request unless advised otherwise.

    • ReadonlyUNAVAILABLE: "UNAVAILABLE"

      The service is currently unavailable.

      Subsequent requests by the client are permissible.

    • ReadonlyUNKNOWN: "UNKNOWN"

      The error type is unknown.

      Subsequent requests by the client are permissible.

    • ReadonlyUPSTREAM_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.