class Hpe3parSdk::HTTPProxyAuthRequired

Attributes

http_status[R]

HTTP 407 - The client must first authenticate itself with the proxy.

message[R]

HTTP 407 - The client must first authenticate itself with the proxy.

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 176
def initialize(code = nil, message =nil, ref =nil, http_status=nil)
  @http_status = 407
  @message = 'Proxy Authentication Required'

  super(code, message.nil? ? @message : message,
        ref,
        http_status.nil? ? @http_status : http_status)
end