# Released under the MIT License. See LICENSE for details.#"""Error related functionality."""from__future__importannotationsfromtypingimportTYPE_CHECKINGifTYPE_CHECKING:fromtypingimportAny
[docs]classContextError(Exception):"""Raised when a call is made in an invalid context. Examples of this include calling UI functions within an activity context or calling scene manipulation functions outside of a scene context. """
[docs]classNotFoundError(Exception):"""Raised when a referenced object does not exist."""
[docs]classPlayerNotFoundError(NotFoundError):"""Raised when an expected player does not exist."""
[docs]classSessionPlayerNotFoundError(NotFoundError):"""Exception raised when an expected session-player does not exist."""
[docs]classTeamNotFoundError(NotFoundError):"""Raised when an expected team does not exist."""
[docs]classMapNotFoundError(NotFoundError):"""Raised when an expected map does not exist."""
[docs]classDelegateNotFoundError(NotFoundError):"""Raised when an expected delegate object does not exist."""
[docs]classSessionTeamNotFoundError(NotFoundError):"""Raised when an expected session-team does not exist."""
[docs]classNodeNotFoundError(NotFoundError):"""Raised when an expected node does not exist."""
[docs]classActorNotFoundError(NotFoundError):"""Raised when an expected actor does not exist."""
[docs]classActivityNotFoundError(NotFoundError):"""Raised when an expected activity does not exist."""
[docs]classSessionNotFoundError(NotFoundError):"""Raised when an expected session does not exist."""
[docs]classInputDeviceNotFoundError(NotFoundError):"""Raised when an expected input-device does not exist."""
[docs]classWidgetNotFoundError(NotFoundError):"""Raised when an expected widget does not exist."""
# Docs-generation hack; import some stuff that we likely only forward-declared# in our actual source code so that docs tools can find it.fromtypingimport(Coroutine,Any,Literal,Callable,Generator,Awaitable,Sequence,Self)importasynciofromconcurrent.futuresimportFuture