class Droonga::Client::Connection::ConnectionError

Attributes

detail[R]
host[R]
port[R]

Public Class Methods

new(host, port, detail) click to toggle source
Calls superclass method
# File lib/droonga/client/connection/error.rb, line 40
def initialize(host, port, detail)
  @host = host
  @port = port
  @detail = detail
  super("Failed to connect: <#{@host}:#{@port}>: #{@detail}")
end