class Warg::InvalidHostDataError

Public Class Methods

new(host_data) click to toggle source
# File lib/warg.rb, line 57
def initialize(host_data)
  @host_data = host_data
end

Public Instance Methods

message() click to toggle source
# File lib/warg.rb, line 61
def message
  "could not instantiate a host from `#{@host_data.inspect}'"
end