MCPcopy Index your code
hub / github.com/python/cpython / Fault

Class Fault

Lib/xmlrpc/client.py:233–241  ·  view source on GitHub ↗

Indicates an XML-RPC fault package.

Source from the content-addressed store, hash-verified

231# @param faultString The XML-RPC fault string.
232
233class Fault(Error):
234 """Indicates an XML-RPC fault package."""
235 def __init__(self, faultCode, faultString, **extra):
236 Error.__init__(self)
237 self.faultCode = faultCode
238 self.faultString = faultString
239 def __repr__(self):
240 return "<%s %s: %r>" % (self.__class__.__name__,
241 self.faultCode, self.faultString)
242
243# --------------------------------------------------------------------
244# Special values

Callers 4

_marshaled_dispatchMethod · 0.90
_marshaled_dispatchMethod · 0.90
closeMethod · 0.85
__getitem__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…