327
328
BzrCommandError.__init__(self, msg)
329
331
class NoCommonAncestor(BzrError):
330
332
def __init__(self, revision_a, revision_b):
331
333
msg = "Revisions have no common ancestor: %s %s." \
332
334
% (revision_a, revision_b)
333
335
BzrError.__init__(self, msg)
335
338
class NoCommonRoot(BzrError):
336
339
def __init__(self, revision_a, revision_b):
337
340
msg = "Revisions are not derived from the same root: %s %s." \
338
341
% (revision_a, revision_b)
339
342
BzrError.__init__(self, msg)
341
345
class NotAncestor(BzrError):
342
346
def __init__(self, rev_id, not_ancestor_id):
343
347
msg = "Revision %s is not an ancestor of %s" % (not_ancestor_id,