Exception: Ridley::Errors::HTTPError

Inherits:
RidleyError
  • Object
show all
Defined in:
lib/ridley/errors.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(env) ⇒ HTTPError

Returns a new instance of HTTPError.



117
118
119
120
121
122
123
124
125
126
127
# File 'lib/ridley/errors.rb', line 117

def initialize(env)
  @env = env
  @errors = env[:body].is_a?(Hash) ? Array(env[:body][:error]) : []

  if errors.empty?
    @message = env[:body] || "no content body"
  else
    @message = "errors: "
    @message << errors.collect { |e| "'#{e}'" }.join(', ')
  end
end

Instance Attribute Details

#envObject (readonly)

Returns the value of attribute env.



111
112
113
# File 'lib/ridley/errors.rb', line 111

def env
  @env
end

#errorsObject (readonly)

Returns the value of attribute errors.



112
113
114
# File 'lib/ridley/errors.rb', line 112

def errors
  @errors
end

#messageObject (readonly) Also known as: to_s

Returns the value of attribute message.



114
115
116
# File 'lib/ridley/errors.rb', line 114

def message
  @message
end

Class Method Details

.error_mapObject



106
107
108
# File 'lib/ridley/errors.rb', line 106

def error_map
  @@error_map ||= Hash.new
end

.fabricate(env) ⇒ Object



91
92
93
94
# File 'lib/ridley/errors.rb', line 91

def fabricate(env)
  klass = lookup_error(env[:status].to_i)
  klass.new(env)
end

.lookup_error(status) ⇒ Object



100
101
102
103
104
# File 'lib/ridley/errors.rb', line 100

def lookup_error(status)
  error_map.fetch(status.to_i)
rescue KeyError
  HTTPUnknownStatus
end

.register_error(status) ⇒ Object



96
97
98
# File 'lib/ridley/errors.rb', line 96

def register_error(status)
  error_map[status.to_i] = self
end