(self, arg: object | None = None, *args: t.Any, **kwargs: t.Any)
| 212 | show_exception = False |
| 213 | |
| 214 | def __init__(self, arg: object | None = None, *args: t.Any, **kwargs: t.Any): |
| 215 | super().__init__(*args, **kwargs) |
| 216 | |
| 217 | if arg is None: |
| 218 | KeyError.__init__(self) |
| 219 | else: |
| 220 | KeyError.__init__(self, arg) |
| 221 | |
| 222 | @property |
| 223 | def description(self) -> str: |