Exception: Cassandra::Errors::AlreadyExistsError
- Inherits:
-
ConfigurationError
- Object
- StandardError
- ConfigurationError
- Cassandra::Errors::AlreadyExistsError
- Defined in:
- lib/cassandra/errors.rb
Overview
Raised when the query attempted to create a keyspace or a table that was already existing.
Instance Attribute Summary collapse
-
#keyspace ⇒ String
readonly
Keyspace.
-
#table ⇒ String?
readonly
Table or
nil
.
Attributes included from ValidationError
Instance Attribute Details
#keyspace ⇒ String (readonly)
Returns keyspace.
319 320 321 |
# File 'lib/cassandra/errors.rb', line 319 def keyspace @keyspace end |
#table ⇒ String? (readonly)
Returns table or nil
.
322 323 324 |
# File 'lib/cassandra/errors.rb', line 322 def table @table end |