| 29 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
| 30 | |
| 31 | class AlreadyDefined (BaseException): |
| 32 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
| 33 | |
| 34 | class IllegalOperation (BaseException): |
| 35 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
nothing calls this directly
no outgoing calls
no test coverage detected