class Cql::Client::FailedConnection

@private

Attributes

error[R]
host[R]

Public Class Methods

new(error, host) click to toggle source
# File lib/cql/client/connector.rb, line 246
def initialize(error, host)
  @error = error
  @host = host
end

Public Instance Methods

connected?() click to toggle source
# File lib/cql/client/connector.rb, line 251
def connected?
  false
end