Skip to content

Error#

Error ABC's.

The error abstract classes.

ExceptionError #

Bases: abc.ABC

Exception error.

The exception error lavalink returns when a track has an exception.

Lavalink Reference

message abstractmethod property #

message: str | None

The message of the exception.

severity abstractmethod property #

severity: SeverityType

The severity of the exception.

cause abstractmethod property #

cause: str

The cause of the exception.

SeverityType #

Bases: str, enum.Enum

Track error severity type.

The severity type of the lavalink track error.

Lavalink Reference

COMMON class-attribute instance-attribute #

COMMON = 'common'

The cause is known and expected, indicates that there is nothing wrong with the library itself.

SUSPICIOUS class-attribute instance-attribute #

SUSPICIOUS = 'suspicious'

The cause might not be exactly known, but is possibly caused by outside factors. For example when an outside service responds in a format that we do not expect.

FAULT class-attribute instance-attribute #

FAULT = 'fault'

The probable cause is an issue with the library or there is no way to tell what the cause might be. This is the default level and other levels are used in cases where the thrower has more in-depth knowledge about the error.