Class DecodedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sedmelluq.discord.lavaplayer.tools.DecodedException
-
- All Implemented Interfaces:
java.io.Serializable
public class DecodedException extends java.lang.ExceptionDecoded serialized exception. The original exception class is not restored, instead all exceptions will be instances of this class and contain the original class name and message as fields and as the message.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringclassNameOriginal exception class namejava.lang.StringoriginalMessageOriginal exception message
-
Constructor Summary
Constructors Constructor Description DecodedException(java.lang.String className, java.lang.String originalMessage, DecodedException cause)
-
-
-
Constructor Detail
-
DecodedException
public DecodedException(java.lang.String className, java.lang.String originalMessage, DecodedException cause)- Parameters:
className- Original exception class nameoriginalMessage- Original exception messagecause- Cause of this exception
-
-