| 11 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
| 12 | |
| 13 | class FeatureConflict (BaseException): |
| 14 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
| 15 | |
| 16 | class InvalidSource (BaseException): |
| 17 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
nothing calls this directly
no outgoing calls
no test coverage detected