class Hpe3parSdk::HTTPRequestedRangeNotSatisfiable

Attributes

http_status[R]

HTTP 416 - The client has asked for a portion of the file, but the server

cannot supply that portion.
message[R]

HTTP 416 - The client has asked for a portion of the file, but the server

cannot supply that portion.

Public Class Methods

new(code = nil, message =nil, ref =nil, http_status=nil) click to toggle source
Calls superclass method Hpe3parSdk::HPE3PARException::new
# File lib/Hpe3parSdk/exceptions.rb, line 318
def initialize(code = nil, message =nil, ref =nil, http_status=nil)
  @http_status = 416
  @message = 'Requested Range Not Satisfiable'
  super(code, message.nil? ? @message : message,
        ref,
        http_status.nil? ? @http_status : http_status)
end