lib/redis_failover/errors.rb in redis_failover-0.8.9 vs lib/redis_failover/errors.rb in redis_failover-0.9.0

- old
+ new

@@ -42,6 +42,10 @@ class UnsupportedOperationError < Error def initialize(operation) super("Operation `#{operation}` is currently unsupported") end end + + # Raised when we detect an expired ZK session. + class ZKDisconnectedError < Error + end end