~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2005-07-07 10:22:02 UTC
  • Revision ID: mbp@sourcefrog.net-20050707102201-2d2a13a25098b101
- rearrange and clear up merged weave

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    pass
35
35
 
36
36
 
37
 
def bailout(msg, explanation=[]):
38
 
    ex = BzrError(msg, explanation)
39
 
    import trace
40
 
    trace._tracefile.write('* raising %s\n' % ex)
41
 
    raise ex
42
 
 
 
37
class NotBranchError(BzrError):
 
38
    """Specified path is not in a branch"""
 
39
    pass
 
40
 
 
41
 
 
42
class NotVersionedError(BzrError):
 
43
    """Specified object is not versioned."""
 
44
 
 
45
 
 
46
class BadFileKindError(BzrError):
 
47
    """Specified file is of a kind that cannot be added.
 
48
 
 
49
    (For example a symlink or device file.)"""
 
50
    pass
 
51
 
 
52
 
 
53
class ForbiddenFileError(BzrError):
 
54
    """Cannot operate on a file because it is a control file."""
 
55
    pass
 
56
 
 
57
 
 
58
class LockError(Exception):
 
59
    """All exceptions from the lock/unlock functions should be from
 
60
    this exception class.  They will be translated as necessary. The
 
61
    original exception is available as e.original_error
 
62
    """
 
63
    def __init__(self, e=None):
 
64
        self.original_error = e
 
65
        if e:
 
66
            Exception.__init__(self, e)
 
67
        else:
 
68
            Exception.__init__(self)