f | class ExceptionTree: | f | class ExceptionTree: |
| | | |
| def __init__(self): | | def __init__(self): |
n | self._cache = {} | n | self.classes = {} |
| | | |
n | def __call__(self, index): | n | def __call__(self, n): |
| if index not in self._cache: | | if n not in self.classes: |
| if index == 1: | | if n == 1: |
| base_exception = Exception | | base = Exception |
| else: | | else: |
t | parent_index = index // 2 | t | parent_index = n // 2 |
| base_exception = self(parent_index) | | base = self(parent_index) |
| exception_class = type(f'Exception{index}', (base_exception, | | new_class = type(f'Exception{n}', (base,), {'n': n}) |
| ), {'n': index}) | | |
| self._cache[index] = exception_class | | self.classes[n] = new_class |
| return self._cache[index] | | return self.classes[n] |