Source code for yatsm.errors

[docs]class TSLengthException(Exception): """ Exception stating timeseries does not contain enough observations """ pass
[docs]class TrainingDataException(Exception): """ Custom exception for errors with training data """ pass
[docs]class AlgorithmNotFoundException(Exception): """ Custom exception for algorithm config files without handlers """ pass