5
0
mirror of https://github.com/odoo/runbot.git synced 2025-03-25 20:35:52 +07:00
runbot/runbot_merge/exceptions.py

9 lines
158 B
Python
Raw Normal View History

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