class WinRM::WinRMSoapFault

A Fault returned in the SOAP response. The XML node contains Code, SubCode and Reason

Attributes

code[R]
reason[R]
subcode[R]

Public Class Methods

new(code, subcode, reason) click to toggle source
Calls superclass method
# File lib/winrm/exceptions.rb, line 59
def initialize(code, subcode, reason)
  @code = code
  @subcode = subcode
  @reason = reason
  super("[SOAP ERROR CODE: #{code} (#{subcode})]: #{reason}")
end