class Async::REST::ResponseError

def initialize(response)

def initialize(response)
	super(response.read)
	
	@response = response
end

def to_s

def to_s
	"#{@response}: #{super}"
end