Exception: GrpcKit::Errors::Unimplemented

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

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ Unimplemented

Returns a new instance of Unimplemented.



27
28
29
30
31
32
# File 'lib/grpc_kit/errors.rb', line 27

def initialize(name)
  super(
    GrpcKit::StatusCodes::UNIMPLEMENTED,
    "Method not found at server: #{name}"
  )
end