pywatts.core.exceptions package

Submodules

pywatts.core.exceptions.input_not_available module

exception pywatts.core.exceptions.input_not_available.InputNotAvailable(message)

Bases: Exception

Exception which indicates that the requested input for a module is not available .. attribute:: message – explanation of the exception

pywatts.core.exceptions.io_exceptions module

exception pywatts.core.exceptions.io_exceptions.IOException(message)

Bases: Exception

Exception which is raised by IO related tasks .. attribute:: message – explanation of the exception

pywatts.core.exceptions.kind_of_transform_does_not_exist_exception module

class pywatts.core.exceptions.kind_of_transform_does_not_exist_exception.KindOfTransform

Bases: enum.Enum

Enum for different types of transform

INVERSE_TRANSFORM = 'inverse_transform'
PREDICT_TRANSFORM = 'predict_transform'
PROBABILISTIC_TRANSFORM = 'prob_transform'
exception pywatts.core.exceptions.kind_of_transform_does_not_exist_exception.KindOfTransformDoesNotExistException(message, method: pywatts.core.exceptions.kind_of_transform_does_not_exist_exception.KindOfTransform)

Bases: Exception

Exception which indicates that the requested transform method does not exist .. attribute:: message – explanation of the exception

method -- method which does not exist

pywatts.core.exceptions.not_fitted_exception module

exception pywatts.core.exceptions.not_fitted_exception.NotFittedException(message, step: str, module: str)

Bases: Exception

Exception which indicates an error caused by wrong parameters .. attribute:: message – explanation of the exception

step -- the step which raised that exception
module -- the module which raised that exception

pywatts.core.exceptions.step_creation_exception module

exception pywatts.core.exceptions.step_creation_exception.StepCreationException(message, module='')

Bases: Exception

Exception which occurs during the creation of steps and adding modules to the pipeline. .. attribute:: message – explanation of the exception

module -- the module which raised that exception

pywatts.core.exceptions.util_exception module

exception pywatts.core.exceptions.util_exception.UtilException(message)

Bases: Exception

Exception raised by a util function

pywatts.core.exceptions.wrong_parameter_exception module

exception pywatts.core.exceptions.wrong_parameter_exception.WrongParameterException(message, possible_solution, module)

Bases: Exception

Exception which indicates an error caused by wrong parameters .. attribute:: message – explanation of the exception

possible_solution -- Possible solution for solving the issue
module -- the module which raised that exception

Module contents