| 14 | |
| 15 | |
| 16 | class NoMoreData(IOError): |
| 17 | def __init__(self, buf=None): |
| 18 | self.buf = buf |
| 19 | |
| 20 | def __str__(self): |
| 21 | return "No more data after: %r" % self.buf |
| 22 | |
| 23 | |
| 24 | class ConfigurationProblem(ParseException): |
no outgoing calls
no test coverage detected