2010-05-01 07:38:33 +02:00

27 lines
391 B
Python

"""
This module provides exception classes.
"""
class Error(Exception):
"""
Changeset error.
"""
class NotSupportedError(Error):
"""
Not supported error.
"""
class InvalidConstraintError(Error):
"""
Invalid constraint error.
"""
class MigrateDeprecationWarning(DeprecationWarning):
"""
Warning for deprecated features in Migrate
"""