runbot/runbot_merge/exceptions.py

9 lines
158 B
Python
Raw Permalink Normal View History

class MergeError(Exception):
pass
class FastForwardError(Exception):
pass
class Mismatch(MergeError):
pass
class Unmergeable(MergeError):
...