2015-05-09 23:01:40 +08:00
|
|
|
from django.db.utils import DatabaseError
|
2015-05-02 02:46:07 +08:00
|
|
|
|
|
|
|
|
|
|
|
class AmbiguityError(Exception):
|
|
|
|
"""
|
|
|
|
Raised when more than one migration matches a name prefix.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class BadMigrationError(Exception):
|
|
|
|
"""
|
|
|
|
Raised when there's a bad migration (unreadable/bad format/etc.).
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class CircularDependencyError(Exception):
|
|
|
|
"""
|
|
|
|
Raised when there's an impossible-to-resolve circular dependency.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2016-04-02 20:46:59 +08:00
|
|
|
class InconsistentMigrationHistory(Exception):
|
|
|
|
"""
|
|
|
|
Raised when an applied migration has some of its dependencies not applied.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-05-02 02:46:07 +08:00
|
|
|
class InvalidBasesError(ValueError):
|
|
|
|
"""
|
|
|
|
Raised when a model's base classes can't be resolved.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class IrreversibleError(RuntimeError):
|
|
|
|
"""
|
|
|
|
Raised when a irreversible migration is about to be reversed.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class NodeNotFoundError(LookupError):
|
|
|
|
"""
|
|
|
|
Raised when an attempt on a node is made that is not available in the graph.
|
|
|
|
"""
|
|
|
|
|
2016-05-08 08:56:13 +08:00
|
|
|
def __init__(self, message, node, origin=None):
|
2015-05-02 02:46:07 +08:00
|
|
|
self.message = message
|
2016-05-08 08:56:13 +08:00
|
|
|
self.origin = origin
|
2015-05-02 02:46:07 +08:00
|
|
|
self.node = node
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.message
|
|
|
|
|
|
|
|
def __repr__(self):
|
2016-03-10 11:09:44 +08:00
|
|
|
return "NodeNotFoundError(%r)" % (self.node, )
|
2015-05-09 23:01:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
class MigrationSchemaMissing(DatabaseError):
|
|
|
|
pass
|
2015-08-27 07:49:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
class InvalidMigrationPlan(ValueError):
|
|
|
|
pass
|