Skip to content

exception

TimestampAttributeMissingError

Bases: Exception

Error raised when timestamp attribute is missing.

Source code in src/recnexteval/matrix/exception.py
1
2
3
4
5
class TimestampAttributeMissingError(Exception):
    """Error raised when timestamp attribute is missing."""

    def __init__(self, message: str = "InteractionMatrix is missing timestamps.") -> None:
        super().__init__(message)