(self, message = '')
| 27 | |
| 28 | class InvalidAttribute (BaseException): |
| 29 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
| 30 | |
| 31 | class AlreadyDefined (BaseException): |
| 32 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |