(self, message = '')
| 9 | |
| 10 | class UserError (BaseException): |
| 11 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
| 12 | |
| 13 | class FeatureConflict (BaseException): |
| 14 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |