XMLRPC::FaultException (Class)

In: xmlrpc/parser.rb
Parent: Exception

Methods

new   to_h  

Attributes

faultCode  [R] 
faultString  [R] 

Public Class methods

[Source]

# File xmlrpc/parser.rb, line 57
    def initialize(faultCode, faultString)
      @faultCode   = faultCode
      @faultString = faultString
    end

Public Instance methods

returns a hash

[Source]

# File xmlrpc/parser.rb, line 63
    def to_h
      {"faultCode" => @faultCode, "faultString" => @faultString}
    end

[Validate]