Exception: GrpcKit::Errors::Unimplemented

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) ⇒ Unimplemented

Returns a new instance of Unimplemented.

Parameters:

  • message (String)


120
121
122
# File 'lib/grpc_kit/errors.rb', line 120

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