class ProxyFetcher::Exceptions::UnknownAdapter

Exception for cases when user tries to set wrong HTML parser adapter in the configuration.

Public Class Methods

new(name) click to toggle source

Initialize new exception

@param name [String] configured adapter name

@return [UnknownAdapter]

Calls superclass method
# File lib/proxy_fetcher/exceptions.rb, line 82
def initialize(name)
  super("unknown adapter '#{name}'")
end