Skip to content

IllegalSchemaModificationError

Bases: Exception

Exception raised when modifying a schema in a way that is inconsistent with the subclass's requirements.

Source code in src/safeds/exceptions/_data.py
class IllegalSchemaModificationError(Exception):
    """Exception raised when modifying a schema in a way that is inconsistent with the subclass's requirements."""

    def __init__(self, msg: str) -> None:
        super().__init__(f"Illegal schema modification: {msg}")

__init__(msg)

Source code in src/safeds/exceptions/_data.py
def __init__(self, msg: str) -> None:
    super().__init__(f"Illegal schema modification: {msg}")