diff options
Diffstat (limited to 'sqlparse/exceptions.py')
-rw-r--r-- | sqlparse/exceptions.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sqlparse/exceptions.py b/sqlparse/exceptions.py new file mode 100644 index 0000000..2a8e571 --- /dev/null +++ b/sqlparse/exceptions.py @@ -0,0 +1,11 @@ +# Copyright (C) 2012 Andi Albrecht, albrecht.andi@gmail.com +# +# This module is part of python-sqlparse and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php. + +"""Exceptions used in this package.""" + +class SQLParseError(Exception): + """Base class for exceptions in this module.""" + + |