~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2005-06-06 04:47:33 UTC
  • Revision ID: mbp@sourcefrog.net-20050606044733-e902b05ac1747cd2
- fix invocation of testbzr when giving explicit bzr location

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    pass
30
30
 
31
31
 
32
 
class InvalidRevisionNumber(BzrError):
33
 
    def __init__(self, revno):
34
 
        self.args = [revno]
35
 
        
36
 
    def __str__(self):
37
 
        return 'invalid revision number: %r' % self.args[0]
38
 
 
39
 
 
40
 
class InvalidRevisionId(BzrError):
41
 
    pass
42
 
 
43
 
 
44
32
class BzrCommandError(BzrError):
45
33
    # Error from malformed user command
46
34
    pass
51
39
    pass
52
40
 
53
41
 
54
 
class NotVersionedError(BzrError):
55
 
    """Specified object is not versioned."""
56
 
 
57
 
 
58
42
class BadFileKindError(BzrError):
59
43
    """Specified file is of a kind that cannot be added.
60
44
 
80
64
            Exception.__init__(self)
81
65
 
82
66
 
83
 
class PointlessCommit(Exception):
84
 
    """Commit failed because nothing was changed."""
85
 
 
86
 
 
87
 
class NoSuchRevision(BzrError):
88
 
    def __init__(self, branch, revision):
89
 
        self.branch = branch
90
 
        self.revision = revision
91
 
        msg = "Branch %s has no revision %s" % (branch, revision)
92
 
        BzrError.__init__(self, msg)
93
 
 
 
67
 
 
68
def bailout(msg, explanation=[]):
 
69
    ex = BzrError(msg, explanation)
 
70
    import trace
 
71
    trace._tracefile.write('* raising %s\n' % ex)
 
72
    raise ex
94
73