~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

 * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
   behaviour. They use the existing serverless-mode and store no data
   locally. As such they are not suitable for use except in high bandwidth
   low latency environments like LAN's or local disk. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
 
106
106
class BzrCheckError(BzrNewError):
107
107
    """Internal check failed: %(message)s"""
 
108
 
108
109
    def __init__(self, message):
109
110
        BzrNewError.__init__(self)
110
111
        self.message = message
578
579
    def __init__(self, format):
579
580
        BzrNewError.__init__(self)
580
581
        self.format = format
 
582
 
 
583
 
 
584
class OutOfDateTree(BzrNewError):
 
585
    """Working tree is out of date, please run 'bzr update'."""
 
586
 
 
587
    def __init__(self, tree):
 
588
        BzrNewError.__init__(self)
 
589
        self.tree = tree