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

Method __init__

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

Source from the content-addressed store, hash-verified

445 """
446
447 def __init__(self, message: str, tname: str, cname: str):
448 NoReferenceError.__init__(self, message)
449 self.table_name = tname
450 self.column_name = cname
451
452 def __reduce__(self) -> Union[str, Tuple[Any, ...]]:
453 return (

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected