MCPcopy Index your code
hub / github.com/webpy/webpy / _ItplError

Class _ItplError

web/db.py:58–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56
57
58class _ItplError(ValueError):
59 def __init__(self, text, pos):
60 ValueError.__init__(self)
61 self.text = text
62 self.pos = pos
63
64 def __str__(self):
65 return "unfinished expression in %s at char %d" % (repr(self.text), self.pos)
66
67
68class TransactionError(Exception):

Callers 2

matchorfailFunction · 0.85
matchMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected