auto-semver/semver/exceptions.py

19 lines
351 B
Python
Raw Permalink Normal View History

2023-07-01 04:53:38 +02:00
class SemverException(Exception):
"""Semver base exception"""
pass
class NoMergeFoundException(SemverException):
"""No merge found in commit message"""
pass
class NotMainBranchException(SemverException):
"""Not on main branch"""
pass
class NoGitFlowException(SemverException):
"""No git flow branch found"""
pass