Lines Matching refs:Fault
116 raise a special :exc:`Fault` instance, used to signal XML-RPC server errors, or
118 Both :exc:`Fault` and :exc:`ProtocolError` derive from a base class called
174 :class:`Fault` or :class:`ProtocolError` object indicating an error.
370 Fault Objects
373 .. class:: Fault
375 A :class:`Fault` object encapsulates the content of an XML-RPC fault tag. Fault
388 In the following example we're going to intentionally cause a :exc:`Fault` by
411 except xmlrpclib.Fault as err:
413 print "Fault code: %d" % err.faultCode
414 print "Fault string: %s" % err.faultString
541 :exc:`Fault` exception class. If *methodresponse* is true, only a single value
553 represents a fault condition, this function will raise a :exc:`Fault` exception.