Bases: Exception
Raised when the structure of the model is invalid.
Source code in src/safeds/exceptions/_ml.py
| class InvalidModelStructureError(Exception):
"""Raised when the structure of the model is invalid."""
def __init__(self, reason: str) -> None:
super().__init__(f"The model structure is invalid: {reason}")
|