Source code for minsci.exceptions
"""Custom exceptions for minsci module"""
[docs]class MinSciException(Exception):
"""Root exception. Used only to except any error, never raised."""
pass
[docs]class PathError(MinSciException):
"""Called when pull request on DeepDict fails to resolve"""
pass
[docs]class RowMismatch(MinSciException):
"""Called when columns in table have different numbers of rows"""
pass
[docs]class TaxonNotFound(MinSciException):
"""Called when columns in table have different numbers of rows"""
pass