Skip to content

TrackExceptionEvent

The TrackExceptionEvent is sent by the server to the client if a track playback fails due to an exception.


FieldTypeDescription
opstringAlways event
typestringAlways TrackExceptionEvent
guildIdstringThe Discord guild ID
trackobjectThe Track that failed
exceptionobjectDetails about the error
Exception Object Fields
FieldTypeDescription
messagestringThe error message
severitystringcommon, suspicious, or fatal
causestringThe cause of the error

{
"op": "event",
"type": "TrackExceptionEvent",
"guildId": "1234567890",
"track": { "encoded": "...", "info": { ... } },
"exception": {
"message": "Out of memory",
"severity": "fatal",
"cause": "Native memory allocation failed"
}
}