Exception: GrpcKit::Errors::OutOfRange

Inherits:
BadStatus
  • Object
show all
Defined in:
lib/grpc_kit/errors.rb

Instance Attribute Summary

Attributes inherited from BadStatus

#code, #reason

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ OutOfRange

Returns a new instance of OutOfRange.

Parameters:

  • message (String)


113
114
115
# File 'lib/grpc_kit/errors.rb', line 113

def initialize(message)
  super(GrpcKit::StatusCodes::OUT_OF_RANGE, message)
end