302
302
BzrCommandError.__init__(self, msg)
304
305
class NoCommonAncestor(BzrError):
305
306
def __init__(self, revision_a, revision_b):
306
307
msg = "Revisions have no common ancestor: %s %s." \
307
308
% (revision_a, revision_b)
308
309
BzrError.__init__(self, msg)
310
312
class NoCommonRoot(BzrError):
311
313
def __init__(self, revision_a, revision_b):
312
314
msg = "Revisions are not derived from the same root: %s %s." \
313
315
% (revision_a, revision_b)
314
316
BzrError.__init__(self, msg)
316
319
class NotAncestor(BzrError):
317
320
def __init__(self, rev_id, not_ancestor_id):
318
321
msg = "Revision %s is not an ancestor of %s" % (not_ancestor_id,