class JobDispatch::Client::ProxyError
When a proxy result is a failure, this exception is a class that will encapsulate the result.
Attributes
response[R]
Public Class Methods
new(message, response=nil)
click to toggle source
Calls superclass method
# File lib/job_dispatch/client/proxy_error.rb, line 12 def initialize(message, response=nil) @response = response super(message) end