summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/exceptions.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-02-07 01:15:03 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-02-07 01:15:03 +0000
commit648805f8b4d85aaaa221d2587e45259897d6b9f9 (patch)
tree600fc6d764b5506214f1318d7f3f81db00e3d281 /lib/sqlalchemy/exceptions.py
parent7b8cfa6ba1091b18f5b270d1cca0ad108aff23e2 (diff)
downloadsqlalchemy-648805f8b4d85aaaa221d2587e45259897d6b9f9.tar.gz
removed MissingTypeError (think it was an accidental checkin)
Diffstat (limited to 'lib/sqlalchemy/exceptions.py')
-rw-r--r--lib/sqlalchemy/exceptions.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/sqlalchemy/exceptions.py b/lib/sqlalchemy/exceptions.py
index 1caee0649..7e3883aec 100644
--- a/lib/sqlalchemy/exceptions.py
+++ b/lib/sqlalchemy/exceptions.py
@@ -61,7 +61,4 @@ class DBAPIError(SQLAlchemyError):
SQLAlchemyError.__init__(self, "(%s) (%s) %s"% (message, orig.__class__.__name__, str(orig)))
self.orig = orig
-class MissingTypeError(SQLAlchemyError):
- """no database type is available for the sa type"""
- pass