Class Whois::WebInterfaceError
In: lib/whois/errors.rb
lib/whois/errors.rb
Parent: InterfaceNotSupported

Raised when the class has found a server but it doesn‘t support the standard whois interface via port 43. This is the case of some specific domains that only provide a web–based WHOIS interface. (\x01)

Methods

new   new  

Attributes

url  [R] 
url  [R] 

Public Class methods

[Source]

# File lib/whois/errors.rb, line 50
    def initialize(url)
      @url = url
      super("This TLD has no whois server, but you can access the whois database at `#{@url}'")
    end

[Source]

# File lib/whois/errors.rb, line 50
    def initialize(url)
      @url = url
      super("This TLD has no whois server, but you can access the whois database at `#{@url}'")
    end

[Validate]