Files
pg-rad/src/pg_rad/exceptions.py
2026-01-27 15:18:21 +01:00

8 lines
255 B
Python

class ConvergenceError(Exception):
"""Raised when an algorithm fails to converge."""
class DataLoadError(Exception):
"""Base class for data loading errors."""
class InvalidCSVError(DataLoadError):
"""Raised when a file is not a valid CSV."""