mirror of
https://github.com/pim-n/pg-rad
synced 2026-02-02 14:33:09 +01:00
8 lines
255 B
Python
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.""" |