/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

(robertc) Add MemoryTree and TreeBuilder test helpers. Also test behavior of transport.has('/') which caused failures in this when merging, and as a result cleanup the sftp path normalisation logic.

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
                   self.__dict__, str(e))
139
139
 
140
140
 
 
141
class AlreadyBuilding(BzrNewError):
 
142
    """The tree builder is already building a tree."""
 
143
 
 
144
 
141
145
class BzrCheckError(BzrNewError):
142
146
    """Internal check failed: %(message)s"""
143
147
 
192
196
        self.base = base
193
197
 
194
198
 
 
199
class NotBuilding(BzrNewError):
 
200
    """Not currently building a tree."""
 
201
 
 
202
 
195
203
class NotLocalUrl(BzrNewError):
196
204
    """%(url)s is not a local path."""
197
205