Mercurial > public > mercurial-scm > hg
diff mercurial/error.py @ 35105:795bfa2a9103
error: add InMemoryMergeConflictsError
We'll raise this exception in the merge code, and in-memory users like rebase
can catch it and retry without IMM.
Differential Revision: https://phab.mercurial-scm.org/D1210
author | Phil Cohen <phillco@fb.com> |
---|---|
date | Wed, 15 Nov 2017 21:07:30 -0800 |
parents | 61714510220d |
children | c6a7b99f150a |
line wrap: on
line diff
--- a/mercurial/error.py Mon Nov 20 18:05:15 2017 -0500 +++ b/mercurial/error.py Wed Nov 15 21:07:30 2017 -0800 @@ -301,3 +301,7 @@ class PeerTransportError(Abort): """Transport-level I/O error when communicating with a peer repo.""" + +class InMemoryMergeConflictsError(Exception): + """Exception raised when merge conflicts arose during an in-memory merge.""" + __bytes__ = _tobytes