1984
2045
class BzrRenameFailedError(BzrMoveFailedError):
1988
2050
def __init__(self, from_path, to_path, extra=None):
1989
2051
BzrMoveFailedError.__init__(self, from_path, to_path, extra)
1991
2054
class BzrRemoveChangedFilesError(BzrError):
1992
2055
"""Used when user is trying to remove changed files."""