Exception: RedisFailover::UnsupportedOperationError
- Defined in:
- lib/redis_failover/errors.rb
Overview
Raised when an unsupported redis operation is performed.
Instance Method Summary collapse
-
#initialize(operation) ⇒ UnsupportedOperationError
constructor
A new instance of UnsupportedOperationError.
Constructor Details
#initialize(operation) ⇒ UnsupportedOperationError
Returns a new instance of UnsupportedOperationError.
50 51 52 |
# File 'lib/redis_failover/errors.rb', line 50 def initialize(operation) super("Operation `#{operation}` is currently unsupported") end |