summaryrefslogtreecommitdiffstats
path: root/sqlglot/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlglot/errors.py')
-rw-r--r--sqlglot/errors.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/sqlglot/errors.py b/sqlglot/errors.py
index 2ef908f..23a08bd 100644
--- a/sqlglot/errors.py
+++ b/sqlglot/errors.py
@@ -37,6 +37,10 @@ class SchemaError(SqlglotError):
pass
+class ExecuteError(SqlglotError):
+ pass
+
+
def concat_errors(errors: t.Sequence[t.Any], maximum: int) -> str:
msg = [str(e) for e in errors[:maximum]]
remaining = len(errors) - maximum