LIBRE / src /domain /exceptions /__init__.py
RyZ
feat: adding full working local ETL Pipeline
e391a84
Raw
History Blame Contribute Delete
607 Bytes
from src.domain.exceptions.domain_exceptions import (
ConflictError,
DatabaseError,
DomainException,
EntityNotFoundError,
InvalidSignalError,
PredictionOutOfRangeError,
)
from src.domain.exceptions.pipeline_exceptions import (
BrokerError,
ModelInferenceError,
PreprocessingError,
)
__all__ = [
# Domain exceptions
"DomainException",
"InvalidSignalError",
"PredictionOutOfRangeError",
"EntityNotFoundError",
"ConflictError",
"DatabaseError",
# Pipeline exceptions
"PreprocessingError",
"ModelInferenceError",
"BrokerError",
]