MCPcopy Index your code
hub / github.com/marimo-team/marimo / MarimoSQLException

Class MarimoSQLException

marimo/_sql/error_utils.py:20–35  ·  view source on GitHub ↗

Exception raised for SQL-related errors in marimo.

Source from the content-addressed store, hash-verified

18
19
20class MarimoSQLException(Exception):
21 """Exception raised for SQL-related errors in marimo."""
22
23 def __init__(
24 self,
25 message: str,
26 sql_statement: str = "",
27 sql_line: int | None = None,
28 sql_col: int | None = None,
29 hint: str | None = None,
30 ):
31 super().__init__(message)
32 self.sql_statement = sql_statement
33 self.sql_line = sql_line
34 self.sql_col = sql_col
35 self.hint = hint
36
37
38class SQLErrorMetadata(TypedDict):

Callers 2

sqlFunction · 0.90

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…