class Cassandra::Errors::ConfigurationError

Raised when the query is invalid because of some configuration issue.

@example Dropping non-existent keyspace

begin
  client.execute("DROP KEYSPACE unknown_keyspace")
rescue Cassandra::Errors::ConfigurationError
end

@see github.com/apache/cassandra/blob/cassandra-2.0.16/doc/native_protocol_v1.spec#L727 Description of

Config Error in Apache Cassandra native protocol spec v1