Raised when the remote procedure returns a fault-structure, which has two accessor-methods faultCode
an Integer, and faultString
a String.
Creates a new XMLRPC::FaultException
instance.
faultString
is passed to StandardError as the msg
of the Exception.
# File xmlrpc-0.3.0/lib/xmlrpc/parser.rb, line 23 def initialize(faultCode, faultString) @faultCode = faultCode @faultString = faultString super(@faultString) end