MCPcopy Create free account
hub / github.com/MagicStack/asyncpg / __init__

Method __init__

asyncpg/exceptions/_base.py:264–268  ·  view source on GitHub ↗
(self, msg, *, schema=None, data_type=None, position=None)

Source from the content-addressed store, hash-verified

262 """A value decoding error caused by a schema change before row fetching."""
263
264 def __init__(self, msg, *, schema=None, data_type=None, position=None):
265 super().__init__(msg)
266 self.schema_name = schema
267 self.data_type_name = data_type
268 self.position = position
269
270
271class PostgresLogMessage(PostgresMessage):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected