~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Aaron Bentley
  • Date: 2006-03-28 20:53:12 UTC
  • mto: (1634.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1635.
  • Revision ID: abentley@panoramicfeedback.com-20060328205312-914ba2c0e85bda7c
Handle lockdirs over NFS properly

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