(self, message = '')
| 36 | |
| 37 | class Recursion (BaseException): |
| 38 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |
| 39 | |
| 40 | class NoBestMatchingAlternative (BaseException): |
| 41 | def __init__ (self, message = ''): BaseException.__init__ (self, message) |