Exception: Hpe3parSdk::HTTPGone

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) ⇒ HTTPGone

Returns a new instance of HTTPGone.



223
224
225
226
227
228
229
# File 'lib/Hpe3parSdk/exceptions.rb', line 223

def initialize(code = nil, message =nil, ref =nil, http_status=nil)
  @http_status = 410
  @message = 'Gone'
  super(code, message.nil? ? @message : message,
        ref,
        http_status.nil? ? @http_status : http_status)
end

Instance Attribute Details

#http_statusObject (readonly)

HTTP 410 - Indicates that the resource requested is no longer available and

will not be available again.


220
221
222
# File 'lib/Hpe3parSdk/exceptions.rb', line 220

def http_status
  @http_status
end

#messageObject (readonly)

HTTP 410 - Indicates that the resource requested is no longer available and

will not be available again.


220
221
222
# File 'lib/Hpe3parSdk/exceptions.rb', line 220

def message
  @message
end