Sha256: 5d2b9f3b5a69011ef2f5345017c574f02e059190d9160ccfdab5d43c220a158e

Contents?: true

Size: 474 Bytes

Versions: 5

Compression:

Stored size: 474 Bytes

Contents

#
# = Ruby Whois
#
# An intelligent pure Ruby WHOIS client.
#
#
# Category::    Net
# Package::     Whois
# Author::      Simone Carletti <weppos@weppos.net>
# License::     MIT License
#
#--
#
#++


module Whois
  class Server
    module Adapters
      
      class NotImplemented < Base
        
        def request(qstring)
          raise ServerNotImplemented, "The `#{host}' feature has not been implemented yet."
        end
        
      end
      
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
whois-0.8.0 lib/whois/server/adapters/not_implemented.rb
whois-0.5.3 lib/whois/server/adapters/not_implemented.rb
whois-0.5.2 lib/whois/server/adapters/not_implemented.rb
whois-0.5.0 lib/whois/server/adapters/not_implemented.rb
whois-0.5.1 lib/whois/server/adapters/not_implemented.rb