Expand description
This modules contains [Cassandra’s errors] (https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L1011) which server could respond to client.
Structs§
- Already
Exists Error - The query attempted to create a keyspace or a table that was already existing. Read more…
- CDRS
Error - CDRS error which could be returned by Cassandra server as a response. As it goes
from the specification it contains an error code and an error message. Apart of those
depending of type of error it could contain an additional information about an error.
This additional information is represented by
additional_infoproperty which isErrorKind. - Function
Failure Error - A (user defined) function failed during execution.
- Read
Failure Error - A non-timeout exception during a read request.
- Read
Timeout Error - Timeout exception during a read request.
- Simple
Error - Is used if error does not contain any additional info.
- Unavailable
Error - Additional info about [unavailable exception] (https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L1025)
- Unprepared
Error - Can be thrown while a prepared statement tries to be executed if the provided prepared statement ID is not known by this host. [Read more…] (https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L1150)
- Write
Failure Error - A non-timeout exception during a write request. Read more…
- Write
Timeout Error - Timeout exception during a write request.
Enums§
- Additional
Error Info - Additional error info in accordance to [Cassandra protocol v4] (https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L1011).
- Write
Type - Describes the type of the write that failed. Read more…