~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Robert Collins
  • Date: 2006-04-03 23:44:36 UTC
  • mfrom: (1558.10.2 nfslocks)
  • mto: This revision was merged to the branch mainline in revision 1635.
  • Revision ID: robertc@robertcollins.net-20060403234436-466c7aadf509e8ca
Merge NFS LockDir support (Aaron Bentley, Robert Collins).

This also introduces a general Transport Decorator in
bzrlib.transport.decorator which can be used to modify the external
behaviour of transports with a small amount of code. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
193
193
    """Directory not empty: %(path)r%(extra)s"""
194
194
 
195
195
 
 
196
class ResourceBusy(PathError):
 
197
    """Device or resource busy: %(path)r%(extra)s"""
 
198
 
 
199
 
196
200
class PermissionDenied(PathError):
197
201
    """Permission denied: %(path)r%(extra)s"""
198
202