class WinRM::WinRMHTTPTransportError

non-200 response without a SOAP fault

Attributes

status_code[R]

Public Class Methods

new(msg, status_code) click to toggle source
Calls superclass method
# File lib/winrm/exceptions/exceptions.rb, line 51
def initialize(msg, status_code)
  @status_code = status_code
  super(msg + " (#{status_code}).")
end