~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2005-09-14 21:53:30 UTC
  • mto: (1185.1.29)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: abentley@panoramicfeedback.com-20050914215330-4c93c44266d3169d
Started work on handling missing_for_merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
######################################################################
24
24
# exceptions 
25
25
class BzrError(StandardError):
26
 
    def __str__(self):
27
 
        if len(self.args) == 1:
28
 
            return self.args[0]
29
 
        elif len(self.args) == 2:
30
 
            # further explanation or suggestions
31
 
            return '\n  '.join([self.args[0]] + self.args[1])
32
 
        else:
33
 
            return `self.args`
34
 
 
 
26
    pass
35
27
 
36
28
class BzrCheckError(BzrError):
37
29
    pass
100
92
        BzrError.__init__(self, msg)
101
93
 
102
94
 
103
 
class HistoryMissing(BzrError):
104
 
    def __init__(self, branch, object_type, object_id):
105
 
        self.branch = branch
106
 
        BzrError.__init__(self,
107
 
                          '%s is missing %s {%s}'
108
 
                          % (branch, object_type, object_id))
109
 
 
110
 
 
111
95
class UnrelatedBranches(BzrCommandError):
112
96
    def __init__(self):
113
97
        msg = "Branches have no common ancestor, and no base revision"\
114
98
            " specified."
115
99
        BzrCommandError.__init__(self, msg)
116
100
 
 
101
class NoCommonAncestor(BzrError):
 
102
    def __init__(self, revision_a, revision_b):
 
103
        msg = "Revisions have no common ancestor: %s %s." \
 
104
            % (revision_a, revision_b) 
 
105
        BzrError.__init__(self, msg)
 
106
 
 
107
class NoCommonRoot(BzrError):
 
108
    def __init__(self, revision_a, revision_b):
 
109
        msg = "Revisions are not derived from the same root: %s %s." \
 
110
            % (revision_a, revision_b) 
 
111
        BzrError.__init__(self, msg)
117
112
 
118
113
class NotAncestor(BzrError):
119
114
    def __init__(self, rev_id, not_ancestor_id):
138
133
        BzrError.__init__(self, msg)
139
134
        self.bases = bases
140
135
 
 
136
class NoCommits(BzrError):
 
137
    def __init__(self, branch):
 
138
        msg = "Branch %s has no commits." % branch
 
139
        BzrError.__init__(self, msg)