jdash.client.exception.ResponseDeserializationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdash-client Show documentation
Show all versions of jdash-client Show documentation
The HTTP client used to pull data from Geometry Dash servers
The newest version!
package jdash.client.exception;
/**
* Emitted when something goes wrong while deserializing the raw response into an object.
*/
public class ResponseDeserializationException extends GDResponseException {
public ResponseDeserializationException(String response, Throwable cause) {
super(response, "Error when deserializing response", cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy