~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

- more error conversions

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
    """Specified file is of a kind that cannot be added.
148
148
 
149
149
    (For example a symlink or device file.)"""
150
 
    pass
151
150
 
152
151
 
153
152
class ForbiddenFileError(BzrError):
154
153
    """Cannot operate on a file because it is a control file."""
155
 
    pass
156
154
 
157
155
 
158
156
class LockError(Exception):
175
173
 
176
174
 
177
175
class PointlessCommit(BzrNewError):
178
 
    """Commit failed because nothing was changed."""
 
176
    """No changes to commit"""
179
177
 
180
178
 
181
179
class NoSuchRevision(BzrError):