~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

[merge] log reweave errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
376
376
    """Text did not match it's checksum: %(message)s"""
377
377
 
378
378
 
 
379
class WeaveTextDiffers(WeaveError):
 
380
    """Weaves differ on text content. Revision: {%(revision_id)s}, %(weave_a)s, %(weave_b)s"""
 
381
 
 
382
    def __init__(self, revision_id, weave_a, weave_b):
 
383
        WeaveError.__init__(self)
 
384
        self.revision_id = revision_id
 
385
        self.weave_a = weave_a
 
386
        self.weave_b = weave_b
 
387
 
 
388
 
379
389
class NoSuchExportFormat(BzrNewError):
380
390
    """Export format %(format)r not supported"""
381
391
    def __init__(self, format):