Package org.javacord.api.exception
Class NotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.javacord.api.exception.DiscordException
-
- org.javacord.api.exception.BadRequestException
-
- org.javacord.api.exception.NotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
UnknownMessageException
public class NotFoundException extends BadRequestException
When something was not found (HTTP response code 404).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotFoundException(java.lang.Exception origin, java.lang.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
-
-
-
-
Constructor Detail
-
NotFoundException
public NotFoundException(java.lang.Exception origin, java.lang.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.
-
-