class Hpe3parSdk::HTTPRequestURITooLong
Attributes
http_status[R]
HTTP 414 - The URI provided was too long for the server to process.
message[R]
HTTP 414 - The URI provided was too long for the server to process.
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 286 def initialize(code = nil, message =nil, ref =nil, http_status=nil) @http_status = 414 @message = 'Request URI Too Large' super(code, message.nil? ? @message : message, ref, http_status.nil? ? @http_status : http_status) end