Files
optuna-dashboard/optuna_dashboard/artifact/exceptions.py
T
2023-06-02 18:02:55 +09:00

10 lines
301 B
Python

class ArtifactNotFound(Exception):
"""Exception raised when an artifact is not found.
It is typically raised while calling
:meth:`~optuna_dashboard.artifact.protocol.ArtifactBackend.open` or
:meth:`~optuna_dashboard.artifact.protocol.ArtifactBackend.remove` methods.
"""
...