Source code for penaltymodel.exceptions

"""
Exceptions
----------
"""


[docs]class FactoryException(Exception): """General exception for a factory being not able to produce a penalty model."""
[docs]class ImpossiblePenaltyModel(FactoryException): """PenaltyModel is impossible to build."""
[docs]class MissingPenaltyModel(FactoryException): """PenaltyModel is missing from the cache or otherwise unavailable."""