class PlayWhe::BadResponseError

Attributes

response[R]

Public Class Methods

new(response) click to toggle source
Calls superclass method
# File lib/playwhe.rb, line 77
def initialize(response)
  @response = response
  super("status: #{response.status}, body: #{response.body}")
end