Remove generic exceptions

This commit is contained in:
2025-04-21 14:24:13 +02:00
parent 969921dd79
commit f55542cf18
2 changed files with 13 additions and 4 deletions

View File

@@ -6,3 +6,13 @@ class ConfigurationException(Exception):
def __init__(self, msg: str):
super().__init__(msg)
class UnknownConstraintException(Exception):
"""
Exception that is raised when there is a constraint type
that we do not know about.
"""
def __init__(self, msg: str):
super().__init__(msg)