~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

[merge] jam-integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
388
388
    """Text did not match it's checksum: %(message)s"""
389
389
 
390
390
 
 
391
class WeaveTextDiffers(WeaveError):
 
392
    """Weaves differ on text content. Revision: {%(revision_id)s}, %(weave_a)s, %(weave_b)s"""
 
393
 
 
394
    def __init__(self, revision_id, weave_a, weave_b):
 
395
        WeaveError.__init__(self)
 
396
        self.revision_id = revision_id
 
397
        self.weave_a = weave_a
 
398
        self.weave_b = weave_b
 
399
 
 
400
 
391
401
class NoSuchExportFormat(BzrNewError):
392
402
    """Export format %(format)r not supported"""
393
403
    def __init__(self, format):