Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/lavadeno/deps.ts>Lavalink.ExceptionSeverity

lavadeno is a simple, easy-to-use, and flexible lavalink client built on the Deno Runtime.
Latest
enum Lavalink.ExceptionSeverity
import { Lavalink } from "https://deno.land/x/lavadeno@3.3.0/deps.ts";
const { ExceptionSeverity } = Lavalink;

Members

Common = "COMMON"

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

Fault = "FAULT"

If the probable cause is an issue with the library or when 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.

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.