302
336
BzrCommandError.__init__(self, msg)
304
339
class NoCommonAncestor(BzrError):
305
340
def __init__(self, revision_a, revision_b):
306
341
msg = "Revisions have no common ancestor: %s %s." \
307
342
% (revision_a, revision_b)
308
343
BzrError.__init__(self, msg)
310
346
class NoCommonRoot(BzrError):
311
347
def __init__(self, revision_a, revision_b):
312
348
msg = "Revisions are not derived from the same root: %s %s." \
313
349
% (revision_a, revision_b)
314
350
BzrError.__init__(self, msg)
316
353
class NotAncestor(BzrError):
317
354
def __init__(self, rev_id, not_ancestor_id):
318
355
msg = "Revision %s is not an ancestor of %s" % (not_ancestor_id,