Exception: GrpcKit::Errors::Unauthenticated

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

Returns a new instance of Unauthenticated.

Parameters:

  • message (String)


148
149
150
# File 'lib/grpc_kit/errors.rb', line 148

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