Exception: Hpe3parSdk::HTTPRequestTimeout

Inherits:
HPE3PARException show all
Defined in:
lib/Hpe3parSdk/exceptions.rb

Instance Attribute Summary collapse

Attributes inherited from HPE3PARException

#code, #ref

Instance Method Summary collapse

Constructor Details

#initialize(code = nil, message = nil, ref = nil, http_status = nil) ⇒ HTTPRequestTimeout

Returns a new instance of HTTPRequestTimeout.



192
193
194
195
196
197
198
# File 'lib/Hpe3parSdk/exceptions.rb', line 192

def initialize(code = nil, message =nil, ref =nil, http_status=nil)
  @http_status = 408
  @message = 'Request Timeout'
  super(code, message.nil? ? @message : message,
        ref,
        http_status.nil? ? @http_status : http_status)
end

Instance Attribute Details

#http_statusObject (readonly)

HTTP 408 - The server timed out waiting for the request.



189
190
191
# File 'lib/Hpe3parSdk/exceptions.rb', line 189

def http_status
  @http_status
end

#messageObject (readonly)

HTTP 408 - The server timed out waiting for the request.



189
190
191
# File 'lib/Hpe3parSdk/exceptions.rb', line 189

def message
  @message
end