Source code for abraxos.exceptions
"""Custom exceptions for the abraxos package."""
from __future__ import annotations
[docs]
class TransformError(AbraxosError):
"""Exception raised when DataFrame transformation fails."""
pass
__all__ = ['AbraxosError', 'TransformError', 'ValidationError', 'LoadError']