mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-24 13:41:07 +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.
|
|
"""
|
|
|
|
...
|