/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

  • Committer: Robert Collins
  • Date: 2006-09-17 21:24:27 UTC
  • mfrom: (2019 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2020.
  • Revision ID: robertc@robertcollins.net-20060917212427-343ef161b483b8e4
Merge bzr.dev.

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