Skip to content

exception

EOWSettingError

Bases: Exception

End of Window Setting Exception.

Source code in src/recnexteval/settings/exception.py
1
2
3
4
5
6
7
8
class EOWSettingError(Exception):
    """End of Window Setting Exception."""

    def __init__(self, message: str | None = None) -> None:
        if not message:
            message = "End of Window reached for the setting."
        self.message = message
        super().__init__(self.message)

message = message instance-attribute