Source code for anchor_python_visualization.embeddings.exceptions

"""Custom exception-types for this package."""

__author__ = "Owen Feehan"
__copyright__ = "Copyright (C) 2021 Owen Feehan"
__license__ = "MIT"
__version__ = "0.1"


[docs]class InsufficientRowsException(Exception): """When there are too few rows in a data-frame to perform an operation.""" pass