~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

[merge] test renames and other fixes (John)

Show diffs side-by-side

added added

removed removed

Lines of Context:
329
329
    """Parents are mismatched between two revisions."""
330
330
    
331
331
 
 
332
class NoSuchExportFormat(BzrNewError):
 
333
    """Export format %(format)r not supported"""
 
334
    def __init__(self, format):
 
335
        BzrNewError.__init__(self)
 
336
        self.format = format
 
337
 
 
338
 
332
339
class TransportError(BzrError):
333
340
    """All errors thrown by Transport implementations should derive
334
341
    from this class.