Lines Matching refs:Fault
125 raise a special :exc:`Fault` instance, used to signal XML-RPC server errors, or
127 Both :exc:`Fault` and :exc:`ProtocolError` derive from a base class called
182 :class:`Fault` or :class:`ProtocolError` object indicating an error.
364 Fault Objects
367 .. class:: Fault
369 A :class:`Fault` object encapsulates the content of an XML-RPC fault tag. Fault
382 In the following example we're going to intentionally cause a :exc:`Fault` by
405 except xmlrpc.client.Fault as err:
407 print("Fault code: %d" % err.faultCode)
408 print("Fault string: %s" % err.faultString)
526 :exc:`Fault` exception class. If *methodresponse* is true, only a single value
538 represents a fault condition, this function will raise a :exc:`Fault` exception.