mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-23 13:30:25 +08:00
10 lines
301 B
Python
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.
|
|
"""
|
|
|
|
...
|