Source code for kstlib.helpers.exceptions
"""Exceptions for the helpers module."""
from kstlib.config.exceptions import KstlibError
[docs]
class TimeTriggerError(KstlibError):
"""Base exception for TimeTrigger errors."""
[docs]
class InvalidModuloError(TimeTriggerError):
"""Raised when modulo string is invalid or out of bounds."""