Source code for evalml.tuners.tuner_exceptions

"""Exception thrown by tuner classes."""


[docs]class NoParamsException(Exception): """Raised when a tuner exhausts its search space and runs out of parameters to propose.""" pass
[docs]class ParameterError(Exception): """Raised when a tuner encounters an error with the parameters being used with it.""" pass