Mercurial > hgsubversion
changeset 363:ccef78b91ac9
Move exception classes in hg_delta_editor up top.
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Thu, 28 May 2009 09:57:00 +0200 |
parents | 705f33c0a323 |
children | b71c8f935740 |
files | hgsubversion/hg_delta_editor.py |
diffstat | 1 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/hgsubversion/hg_delta_editor.py +++ b/hgsubversion/hg_delta_editor.py @@ -19,6 +19,16 @@ import svnexternals import util import maps +class MissingPlainTextError(Exception): + """Exception raised when the repo lacks a source file required for replaying + a txdelta. + """ + +class ReplayException(Exception): + """Exception raised when you try and commit but the replay encountered an + exception. + """ + def pickle_atomic(data, file_path, dir=None): """pickle some data to a path atomically. @@ -1092,13 +1102,3 @@ class HgChangeReceiver(delta.Editor): self._exception_info = sys.exc_info() raise return txdelt_window - -class MissingPlainTextError(Exception): - """Exception raised when the repo lacks a source file required for replaying - a txdelta. - """ - -class ReplayException(Exception): - """Exception raised when you try and commit but the replay encountered an - exception. - """