~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Martin Pool
  • Date: 2006-08-14 04:09:45 UTC
  • mfrom: (1904.1.3 0.9)
  • mto: This revision was merged to the branch mainline in revision 1913.
  • Revision ID: mbp@sourcefrog.net-20060814040945-414f329d15cd8d58
[merge] changes from 0.9 release

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):