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