class Redis::Cluster::CommandErrorCollection

Raised when error occurs on any node of cluster.

def initialize(errors, error_message = 'Command errors were replied on any node')

Parameters:
  • error_message (String) --
  • errors (Hash{String => Redis::CommandError}) --
def initialize(errors, error_message = 'Command errors were replied on any node')
  @errors = errors
  super(error_message)
end