Source code for cellpycore.exceptions """Cellpy Core exceptions.""" [docs] class CellpyError(Exception): """Base class for other Cellpy Core exceptions""" pass [docs] class NoDataFound(CellpyError): """Exception raised when no data is found""" pass