class Asperalm::RestCallError
raised on error after REST call
Attributes
request[RW]
response[RW]
Public Class Methods
new(req,resp,msg)
click to toggle source
@param http response
Calls superclass method
# File lib/asperalm/rest_call_error.rb, line 7 def initialize(req,resp,msg) @request = req @response = resp super(msg) end