~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

MergeĀ fromĀ mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
293
293
class UpgradeReadonly(BzrNewError):
294
294
    """Upgrade URL cannot work with readonly URL's."""
295
295
 
 
296
 
 
297
class UpToDateFormat(BzrNewError):
 
298
    """The branch format %(format)s is already at the most recent format."""
 
299
 
 
300
    def __init__(self, format):
 
301
        BzrNewError.__init__(self)
 
302
        self.format = format
 
303
 
 
304
 
296
305
class StrictCommitFailed(Exception):
297
306
    """Commit refused because there are unknowns in the tree."""
298
307