(self, message: str, tname: str)
| 431 | """ |
| 432 | |
| 433 | def __init__(self, message: str, tname: str): |
| 434 | NoReferenceError.__init__(self, message) |
| 435 | self.table_name = tname |
| 436 | |
| 437 | def __reduce__(self) -> Union[str, Tuple[Any, ...]]: |
| 438 | return self.__class__, (self.args[0], self.table_name) |