~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2005-04-15 01:31:21 UTC
  • Revision ID: mbp@sourcefrog.net-20050415013121-b18f1be12a735066
- Doc cleanups from Magnus Therning

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    pass
30
30
 
31
31
 
32
 
class BzrCommandError(BzrError):
33
 
    # Error from malformed user command
34
 
    pass
35
 
 
36
 
 
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)
 
32
 
 
33
 
 
34
def bailout(msg, explanation=[]):
 
35
    ex = BzrError(msg, explanation)
 
36
    import trace
 
37
    trace._tracefile.write('* raising %s\n' % ex)
 
38
    raise ex
 
39