~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-11-04 20:37:53 UTC
  • mfrom: (0.16.104 shelf-ui)
  • Revision ID: pqm@pqm.ubuntu.com-20081104203753-tr3wp885v5p7ccpc
Implement shelve and unshelve (abentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2920
2920
 
2921
2921
    def __init__(self, shelf_id):
2922
2922
        BzrError.__init__(self, shelf_id=shelf_id)
 
2923
 
 
2924
 
 
2925
class UserAbort(BzrError):
 
2926
 
 
2927
    _fmt = 'The user aborted the operation.'