class ProxmoxAPI::ApiException

This exception is raised when Proxmox API returns error code

@!attribute [r] response

@return [RestClient::Response] answer from Proxmox server

Attributes

response[R]

Public Class Methods

new(response, description) click to toggle source
Calls superclass method
# File lib/proxmox_api.rb, line 52
def initialize(response, description)
  @response = response

  super description
end