Methods
N
T
Attributes
[R] faultCode
[R] faultString
Class Public methods
new(faultCode, faultString)
# File ../ruby/lib/xmlrpc/parser.rb, line 57
def initialize(faultCode, faultString)
  @faultCode   = faultCode
  @faultString = faultString
  super(@faultString)
end
Instance Public methods
to_h()

returns a hash

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