2908
2908
def __init__(self, msg):
2912
class ShelfCorrupt(BzrError):
2914
_fmt = "Shelf corrupt."
2917
class NoSuchShelfId(BzrError):
2919
_fmt = 'No changes are shelved with id "%(shelf_id)d".'
2921
def __init__(self, shelf_id):
2922
BzrError.__init__(self, shelf_id=shelf_id)
2925
class UserAbort(BzrError):
2927
_fmt = 'The user aborted the operation.'