summaryrefslogtreecommitdiff
path: root/migrate/changeset/exceptions.py
blob: a3dacbd7263f4e3185e08b6dd40932933be5a83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""
   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
    """