Exception: Hpe3parSdk::HTTPNotAcceptable

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

Returns a new instance of HTTPNotAcceptable.



162
163
164
165
166
167
168
# File 'lib/Hpe3parSdk/exceptions.rb', line 162

def initialize(code = nil, message =nil, ref =nil, http_status=nil)
  @http_status = 406
  @message = 'Method Not Acceptable'
  super(code, message.nil? ? @message : message,
        ref,
        http_status.nil? ? @http_status : http_status)
end

Instance Attribute Details

#http_statusObject (readonly)

HTTP 406 - Method not Acceptable



159
160
161
# File 'lib/Hpe3parSdk/exceptions.rb', line 159

def http_status
  @http_status
end

#messageObject (readonly)

HTTP 406 - Method not Acceptable



159
160
161
# File 'lib/Hpe3parSdk/exceptions.rb', line 159

def message
  @message
end