~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Vincent Ladeuil
  • Date: 2007-07-15 11:24:18 UTC
  • mfrom: (2617 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2646.
  • Revision ID: v.ladeuil+lp@free.fr-20070715112418-9nn4n6esxv60ny4b
merge bzr.dev@1617

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
        self.current = current
199
199
 
200
200
 
201
 
class InProcessTransport(BzrError):
202
 
 
203
 
    _fmt = "The transport '%(transport)s' is only accessible within this " \
204
 
        "process."
205
 
 
206
 
    def __init__(self, transport):
207
 
        self.transport = transport
208
 
 
209
 
 
210
201
class InvalidEntryName(BzrError):
211
202
    
212
203
    _fmt = "Invalid entry name: %(name)s"