class CassandraMigrations::Errors::UnexistingKeyspaceError
Public Class Methods
new(keyspace, e = nil)
click to toggle source
Calls superclass method
CassandraMigrations::Errors::CassandraError::new
# File lib/cassandra_migrations/errors.rb, line 32 def initialize(keyspace, e = nil) super(%[Keyspace #{keyspace} does not exist. Run rake cassandra:create. #{"(#{e.message})" if e}]) end