/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
2908
2908
    def __init__(self, msg):
2909
2909
        self.msg = msg
2910
2910
 
 
2911
 
 
2912
class ShelfCorrupt(BzrError):
 
2913
 
 
2914
    _fmt = "Shelf corrupt."
 
2915
 
 
2916
 
 
2917
class NoSuchShelfId(BzrError):
 
2918
 
 
2919
    _fmt = 'No changes are shelved with id "%(shelf_id)d".'
 
2920
 
 
2921
    def __init__(self, shelf_id):
 
2922
        BzrError.__init__(self, shelf_id=shelf_id)
 
2923
 
 
2924
 
 
2925
class UserAbort(BzrError):
 
2926
 
 
2927
    _fmt = 'The user aborted the operation.'