~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2005-06-20 03:54:23 UTC
  • Revision ID: mbp@sourcefrog.net-20050620035423-10f4bb320656b0d1
- files within stores are no longer made readonly

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    pass
30
30
 
31
31
 
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
 
 
 
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 BadFileKindError(BzrError):
 
43
    """Specified file is of a kind that cannot be added.
 
44
 
 
45
    (For example a symlink or device file.)"""
 
46
    pass
 
47
 
 
48
 
 
49
class ForbiddenFileError(BzrError):
 
50
    """Cannot operate on a file because it is a control file."""
 
51
    pass
 
52
 
 
53
 
 
54
class LockError(Exception):
 
55
    """All exceptions from the lock/unlock functions should be from
 
56
    this exception class.  They will be translated as necessary. The
 
57
    original exception is available as e.original_error
 
58
    """
 
59
    def __init__(self, e=None):
 
60
        self.original_error = e
 
61
        if e:
 
62
            Exception.__init__(self, e)
 
63
        else:
 
64
            Exception.__init__(self)