scredis

exceptions

package exceptions

Visibility
  1. Public
  2. All

Type Members

  1. final case class RedisCommandException(message: String) extends RedisException with Product with Serializable

    Exception thrown when the Redis server replies with an error message

  2. final case class RedisConnectionException(e: Throwable, message: Option[String], objects: Any*) extends RedisException with Product with Serializable

    Exception resulting from a connection error, e.

  3. sealed abstract class RedisException extends Exception

    Base class of all Redis exceptions.

  4. final case class RedisParsingException(e: Throwable) extends RedisException with Product with Serializable

    Exception thrown when the input could not be parsed by the provided scredis.parsing.Parser.

  5. final case class RedisProtocolException(message: String, objects: Any*) extends RedisException with Product with Serializable

    Exception resulting from an unexpected breach of protocol such as receiving an unexpected reply from the Redis server.

  6. final case class RedisTransactionException(message: String) extends RedisException with Product with Serializable

    Exception resulting from a transaction being discarded.

Ungrouped