Source code for core.utils.exceptions

"""Module to define custom exceptions."""


[docs] class ModelLoadError(Exception): """Raised when errors occur during model loading."""
[docs] class EmbeddingError(Exception): """Raised when errors occur in the embedding method."""
[docs] class BatchingError(Exception): """Raised when errors occur during batching of data."""