Source code for niapy.util.exception

# encoding=utf8

"""Implementation of exceptions."""


[docs]class FesException(Exception): r"""Exception for exceeding number of maximum function evaluations. Author: Klemen Berkovič Date: 2018 License: MIT See Also: * :class:`Exception` """
[docs] def __init__(self, message='Reached the allowed number of the function evaluations!!!'): r"""Initialize the exception. Args: message (Optional[str]): Message show when this exception is thrown """ super().__init__(message)
[docs]class GenException(Exception): r"""Exception for exceeding number of algorithm iterations/generations. Author: Klemen Berkovič Date: 2018 License: MIT See Also: * :class:`Exception` """
[docs] def __init__(self, message='Reached the allowed number of the algorithm evaluations!!!'): r"""Initialize the exception. Args: message (Optional[str]): Message that is shown when this exceptions is thrown """ super().__init__(message)
[docs]class TimeException(Exception): r"""Exception for exceeding time limit. Author: Klemen Berkovič Date: 2018 License: MIT See Also: * :class:`Exception` """
[docs] def __init__(self, message='Reached the allowed run time of the algorithm'): r"""Initialize the exception. Args: message (Optional[str]): Message that is show when this exception is thrown. """ super().__init__(message)
[docs]class RefException(Exception): r"""Exception for exceeding reference value of function/fitness value. Author: Klemen Berkovič Date: 2018 License: MIT See Also: * :class:`Exception` """
[docs] def __init__(self, message='Reached the reference point!!!'): r"""Initialize the exception. Args: message (Optional[str]): Message that is show when this exception is thrown. """ super().__init__(message)