MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

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

Source from the content-addressed store, hash-verified

397 """
398
399 def __init__(self, message: str, tname: str, cname: str):
400 NoReferenceError.__init__(self, message)
401 self.table_name = tname
402 self.column_name = cname
403
404 def __reduce__(self) -> Union[str, Tuple[Any, ...]]:
405 return (

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected