class Omniship::ResponseError
Attributes
response[R]
Public Class Methods
new(response = nil)
click to toggle source
Calls superclass method
# File lib/omniship/response.rb, line 8 def initialize(response = nil) if response.is_a? Response super(response.message) @response = response else super(response) end end