~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-08-14 04:29:57 UTC
  • mfrom: (1912.1.2 bzr.mbp.integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060814042957-3fa43995db57512a
(mbp) merge from 0.9, update for 0.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
312
312
        self.function = function
313
313
 
314
314
 
 
315
class InaccessibleParent(PathError):
 
316
    """Parent not accessible given base %(base)s and relative path %(path)s"""
 
317
 
 
318
    def __init__(self, path, base):
 
319
        PathError.__init__(self, path)
 
320
        self.base = base
 
321
 
 
322
 
315
323
class NoRepositoryPresent(BzrNewError):
316
324
    """No repository present: %(path)r"""
317
325
    def __init__(self, bzrdir):