~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2005-08-11 16:20:13 UTC
  • mto: (1092.1.41) (1185.3.4) (974.1.47)
  • mto: This revision was merged to the branch mainline in revision 1110.
  • Revision ID: abentley@panoramicfeedback.com-20050811162013-c53441a23f455256
Refactored code

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 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."""