5
0
mirror of https://github.com/odoo/runbot.git synced 2025-03-20 01:45:49 +07:00
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):
...