Source code for ts2net.exceptions
"""Public exception types for ts2net."""
from __future__ import annotations
[docs]
class ValidationError(Ts2NetError, ValueError):
"""Raised when input data or parameters fail validation."""
[docs]
class NotBuiltError(Ts2NetError, ValueError):
"""Raised when a network builder method is called before build()/fit()."""