~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

Merge bzr.ab.integration

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
 
743
747
 
744
748
 
745
749
class DependencyNotPresent(BzrNewError):
746
 
    """Unable to import library: %(library)s, %(error)s"""
 
750
    """Unable to import library "%(library)s": %(error)s"""
747
751
 
748
752
    def __init__(self, library, error):
749
753
        BzrNewError.__init__(self, library=library, error=error)