Class: Redis::Cluster::CommandErrorCollection
- Inherits:
-
BaseError
- Object
- BaseError
- Redis::Cluster::CommandErrorCollection
- Defined in:
- lib/redis/cluster.rb
Overview
Raised when error occurs on any node of cluster.
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
Instance Method Summary collapse
-
#initialize(errors, error_message = 'Command errors were replied on any node') ⇒ CommandErrorCollection
constructor
A new instance of CommandErrorCollection.
Constructor Details
#initialize(errors, error_message = 'Command errors were replied on any node') ⇒ CommandErrorCollection
Returns a new instance of CommandErrorCollection.
31 32 33 34 |
# File 'lib/redis/cluster.rb', line 31 def initialize(errors, = 'Command errors were replied on any node') @errors = errors super() end |
Instance Attribute Details
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
27 28 29 |
# File 'lib/redis/cluster.rb', line 27 def errors @errors end |