class Fog::ArubaCloud::Errors::RequestError
This class will contains the response object in order to access the ResultCode easily.
Attributes
error_point[RW]
response[RW]
type[RW]
Public Class Methods
new(message, response=nil, type='n/a', error_point=nil)
click to toggle source
Calls superclass method
# File lib/fog/arubacloud/error.rb, line 34 def initialize(message, response=nil, type='n/a', error_point=nil) @type = type @error_point = error_point @response = response super(message) end