Exception: Hpe3parSdk::HTTPNotFound

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

Returns a new instance of HTTPNotFound.



132
133
134
135
136
137
138
# File 'lib/Hpe3parSdk/exceptions.rb', line 132

def initialize(code = nil, message =nil, ref =nil, http_status=nil)
  @http_status = 404
  @message = 'Not found'
  super(code, message.nil? ? @message : message,
        ref,
        http_status.nil? ? @http_status : http_status)
end

Instance Attribute Details

#http_statusObject (readonly)

HTTP 404 - Not found



129
130
131
# File 'lib/Hpe3parSdk/exceptions.rb', line 129

def http_status
  @http_status
end

#messageObject (readonly)

HTTP 404 - Not found



129
130
131
# File 'lib/Hpe3parSdk/exceptions.rb', line 129

def message
  @message
end