class Droonga::Client::Connection::UnknownBackendError

Attributes

backend[R]
protocol[R]

Public Class Methods

new(protocol, backend, detail) click to toggle source
Calls superclass method
# File lib/droonga/client/connection/error.rb, line 29
def initialize(protocol, backend, detail)
  @protocol = protocol
  @backend = backend
  super("Unknown #{@protocol} backend: <#{backend}>: #{detail}")
end