Exception: RedisFailover::UnsupportedOperationError

Inherits:
Error
  • Object
show all
Defined in:
lib/redis_failover/errors.rb

Overview

Raised when an unsupported redis operation is performed.

Instance Method Summary collapse

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