exceptions.py 342 B

123456789101112
  1. #
  2. # Copyright (C) 2009-2020 the sqlparse authors and contributors
  3. # <see AUTHORS file>
  4. #
  5. # This module is part of python-sqlparse and is released under
  6. # the BSD License: https://opensource.org/licenses/BSD-3-Clause
  7. """Exceptions used in this package."""
  8. class SQLParseError(Exception):
  9. """Base class for exceptions in this module."""