Package org.javacord.api.exception
Class UnknownMessageException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.javacord.api.exception.DiscordException
-
- org.javacord.api.exception.BadRequestException
-
- org.javacord.api.exception.NotFoundException
-
- org.javacord.api.exception.UnknownMessageException
-
- All Implemented Interfaces:
Serializable
public class UnknownMessageException extends NotFoundException
When the message that was referenced, for example for adding a reaction to, is not a message Discord knows about (anymore).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownMessageException(Exception origin, String message, RestRequestInformation request, RestRequestResponseInformation response)Creates a new instance of this class.
-
Method Summary
-
Methods inherited from class org.javacord.api.exception.DiscordException
getRequest, getResponse
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnknownMessageException
public UnknownMessageException(Exception origin, String message, RestRequestInformation request, RestRequestResponseInformation response)
Creates a new instance of this class.- Parameters:
origin- The origin of the exception.message- The message of the exception.request- The information about the request.response- The information about the response.
-
-