(self, message = '')
| 21 | |
| 22 | class InvalidProperty (BaseException): |
| 23 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
| 24 | |
| 25 | class InvalidValue (BaseException): |
| 26 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |