~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2005-05-10 07:06:05 UTC
  • Revision ID: mbp@sourcefrog.net-20050510070605-0a2453ae5db6fc3c
- new command 'bzr added'

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    pass
35
35
 
36
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)
69
 
 
70
 
 
71
 
class PointlessCommit(Exception):
72
 
    """Commit failed because nothing was changed."""
 
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