class GRPC::BadStatus
BadStatus is an exception class that indicates that an error occurred at either end of a GRPC connection. When raised, it indicates that a status error should be returned to the other end of a GRPC connection; when caught it means that this end received a status error.
There is also subclass of BadStatus in this module for each GRPC status. E.g., the GRPC::Cancelled class corresponds to status CANCELLED.
See github.com/grpc/grpc/blob/master/include/grpc/impl/codegen/status.h for detailed descriptions of each status code.
Attributes
Public Class Methods
@param code [Numeric] the status code @param details [String] the details of the exception @param metadata [Hash] the error's metadata
# File src/ruby/lib/grpc/errors.rb, line 38 def initialize(code, details = 'unknown cause', metadata = {}) super("#{code}:#{details}") @code = code @details = details @metadata = metadata end
# File src/ruby/lib/grpc/errors.rb, line 53 def self.new_status_exception(code, details = 'unknown cause', metadata = {}) codes = {} codes[OK] = Ok codes[CANCELLED] = Cancelled codes[UNKNOWN] = Unknown codes[INVALID_ARGUMENT] = InvalidArgument codes[DEADLINE_EXCEEDED] = DeadlineExceeded codes[NOT_FOUND] = NotFound codes[ALREADY_EXISTS] = AlreadyExists codes[PERMISSION_DENIED] = PermissionDenied codes[UNAUTHENTICATED] = Unauthenticated codes[RESOURCE_EXHAUSTED] = ResourceExhausted codes[FAILED_PRECONDITION] = FailedPrecondition codes[ABORTED] = Aborted codes[OUT_OF_RANGE] = OutOfRange codes[UNIMPLEMENTED] = Unimplemented codes[INTERNAL] = Internal codes[UNIMPLEMENTED] = Unimplemented codes[UNAVAILABLE] = Unavailable codes[DATA_LOSS] = DataLoss if codes[code].nil? BadStatus.new(code, details, metadata) else codes[code].new(details, metadata) end end
Public Instance Methods
Converts the exception to a GRPC::Status for use in the networking wrapper layer.
@return [Status] with the same code and details
# File src/ruby/lib/grpc/errors.rb, line 49 def to_status Struct::Status.new(code, details, @metadata) end