Skip to content

Commit

Permalink
chore(exceptions): remove hard dependency on sqlalchemy just for a si…
Browse files Browse the repository at this point in the history
…ngle exception type (#314)
  • Loading branch information
cpcloud committed Feb 12, 2024
1 parent 1cbe5d2 commit e47cf60
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pydruid/db/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
from sqlalchemy.exc import CompileError


class Error(Exception):
pass

Expand All @@ -13,6 +10,10 @@ class InterfaceError(Error):
pass


class CompileError(Error):
pass


class DatabaseError(Error):
pass

Expand Down

0 comments on commit e47cf60

Please sign in to comment.