Source code for mlui.classes.errors

[docs] class UploadError(Exception): """For errors during the uploading of files/models."""
[docs] class CreateError(Exception): """For errors during the process of creating a model."""
[docs] class ParseCSVError(Exception): """For errors during the process of parsing a file."""
[docs] class ValidateDataError(Exception): """For errors during the process of validating the data file."""
[docs] class ValidateModelError(Exception): """For errors during the process of validating the model."""
[docs] class ModelError(Exception): """For arbitrary errors during the process of executing the model's methods."""
[docs] class LayerError(Exception): """For errors during the process of constructing a layer."""
[docs] class SetError(Exception): """For arbitrary errors during the process of setting an attribute's value."""
[docs] class DeleteError(Exception): """For arbitrary errors during the process of deleting an attribute's value."""
[docs] class PlotError(Exception): """For errors during the process of displaying a plot."""