class RestClientWrapper::RestClientError

RestClientError

Attributes

error[R]
response[R]

Public Class Methods

new(message=nil, response=nil, error=nil) click to toggle source
Calls superclass method
# File lib/rest_client_wrapper/exceptions.rb, line 26
def initialize(message=nil, response=nil, error=nil)
  @response = response
  @error = error
  super(message)
end