Source code for cytotable.exceptions

"""
Provide hierarchy of exceptions for CytoTable
"""


[docs]class CytoTableException(Exception): """ Root exception for custom hierarchy of exceptions with CytoTable. """
[docs]class NoInputDataException(CytoTableException): """ Exception for no input data. """
[docs]class DatatypeException(CytoTableException): """ Exception for datatype challenges. """
[docs]class SchemaException(CytoTableException): """ Exception for schema challenges. """