class GRPC::Unauthenticated

GRPC status code corresponding to status UNAUTHENTICATED

Public Class Methods

new(details = 'unknown cause', metadata = {}, debug_error_string = nil) click to toggle source
Calls superclass method GRPC::BadStatus::new
# File src/ruby/lib/grpc/errors.rb, line 190
def initialize(details = 'unknown cause',
               metadata = {},
               debug_error_string = nil)
  super(Core::StatusCodes::UNAUTHENTICATED,
        details, metadata, debug_error_string)
end