MCPcopy
hub / github.com/rholder/retrying / RetryError

Class RetryError

retrying.py:258–267  ·  view source on GitHub ↗

A RetryError encapsulates the last Attempt instance right before giving up.

Source from the content-addressed store, hash-verified

256
257
258class RetryError(Exception):
259 """
260 A RetryError encapsulates the last Attempt instance right before giving up.
261 """
262
263 def __init__(self, last_attempt):
264 self.last_attempt = last_attempt
265
266 def __str__(self):
267 return "RetryError[{0}]".format(self.last_attempt)

Callers 2

callMethod · 0.85
getMethod · 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…