In Files

Parent

Methods

XMLRPC::FaultException

Attributes

faultCode[R]
faultString[R]

Public Class Methods

new(faultCode, faultString) click to toggle source
                
# File xmlrpc/parser.rb, line 57
def initialize(faultCode, faultString)
  @faultCode   = faultCode
  @faultString = faultString
  super(@faultString)
end

Public Instance Methods

to_h() click to toggle source

returns a hash

                
# File xmlrpc/parser.rb, line 64
def to_h
  {"faultCode" => @faultCode, "faultString" => @faultString}
end
blog comments powered by Disqus