Source code for mlui.classes.errors
[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 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."""