mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 17:26:23 +02:00
10 lines
325 B
Python
10 lines
325 B
Python
class EtlParseError(Exception):
|
|
"""Raised when an ETL parser fails to produce content."""
|
|
|
|
|
|
class EtlServiceUnavailableError(Exception):
|
|
"""Raised when the configured ETL_SERVICE is not recognised."""
|
|
|
|
|
|
class EtlUnsupportedFileError(Exception):
|
|
"""Raised when a file type cannot be parsed by any ETL pipeline."""
|