| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- from __future__ import annotations
- class Error(Exception):
- """Base W&B Error.
- <!-- lazydoc-ignore-class: internal -->
- """
- def __init__(self, message: str, context: dict | None = None) -> None:
- super().__init__(message)
- self.message = message
- # sentry context capture
- if context:
- self.context = context
- class CommError(Error):
- """Error communicating with W&B servers."""
- def __init__(self, msg: str, exc: Exception | None = None) -> None:
- self.exc = exc
- self.message = msg
- super().__init__(self.message)
- class AuthenticationError(CommError):
- """Raised when authentication fails."""
- class UsageError(Error):
- """Raised when an invalid usage of the SDK API is detected."""
- class UnsupportedError(UsageError):
- """Raised when trying to use a feature that is not supported."""
- class WandbCoreNotAvailableError(Error):
- """Raised when wandb core is not available."""
|