Source code for deepfold.data.errors

# Copyright 2024 DeepFold Team


"""General-purpose errors used throughout the data pipeline"""


[docs] class Error(Exception): """Base class for exceptions."""
[docs] class PDBxError(Error): """PDBx parsing errors."""
[docs] class PDBxWarning(Warning): """PDBx parsing warnings."""
[docs] class PDBxConstructionError(PDBxError): pass
[docs] class PDBxConstructionWarning(PDBxWarning): pass