MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/exc.py:433–435  ·  view source on GitHub ↗
(self, message: str, tname: str)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected