class CassandraMigrations::Errors::UnexistingKeyspaceError

Public Class Methods

new(keyspace, e = nil) click to toggle source
# 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