Source code for predictor_api_client.common.exceptions

[docs]class NoFeatureValuesForPredictionError(Exception): """Raised when no feature data provided for prediction""" pass
[docs]class UnsupportedFeatureValuesForPredictionError(Exception): """Raised when unsupported feature data are provided for prediction""" pass
[docs]class UnsupportedFeatureLabelsForPredictionError(Exception): """Raised when unsupported feature labels are provided for prediction""" pass
[docs]class NoModelIdentifierForPredictionError(Exception): """Raised when no model identifier is provided for prediction""" pass
[docs]class UnsupportedModelIdentifierForPredictionError(Exception): """Raised when unsupported model identifier is provided for prediction""" pass