Sha256: ce397b1a2897da9eb85382efc55e8fc7d973fd6ba688649e477bd7d9b905b22f

Contents?: true

Size: 1.47 KB

Versions: 6

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

class Redis
  # Base error for all redis-rb errors.
  class BaseError < StandardError
  end

  # Raised by the connection when a protocol error occurs.
  class ProtocolError < BaseError
    def initialize(reply_type)
      super(<<-EOS.gsub(/(?:^|\n)\s*/, " "))
        Got '#{reply_type}' as initial reply byte.
        If you're in a forking environment, such as Unicorn, you need to
        connect to Redis after forking.
      EOS
    end
  end

  # Raised by the client when command execution returns an error reply.
  class CommandError < BaseError
  end

  class PermissionError < CommandError
  end

  class WrongTypeError < CommandError
  end

  class OutOfMemoryError < CommandError
  end

  # Base error for connection related errors.
  class BaseConnectionError < BaseError
  end

  # Raised when connection to a Redis server cannot be made.
  class CannotConnectError < BaseConnectionError
  end

  # Raised when connection to a Redis server is lost.
  class ConnectionError < BaseConnectionError
  end

  # Raised when performing I/O times out.
  class TimeoutError < BaseConnectionError
  end

  # Raised when the connection was inherited by a child process.
  class InheritedError < BaseConnectionError
  end

  # Generally raised during Redis failover scenarios
  class ReadOnlyError < BaseConnectionError
  end

  # Raised when client options are invalid.
  class InvalidClientOptionError < BaseError
  end

  class SubscriptionError < BaseError
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
redis-5.3.0 lib/redis/errors.rb
redis-5.2.0 lib/redis/errors.rb
redis-5.1.0 lib/redis/errors.rb
redis-5.0.8 lib/redis/errors.rb
redis-5.0.7 lib/redis/errors.rb
redis-5.0.6 lib/redis/errors.rb