se.michaelthelin.spotify.exceptions.SpotifyWebApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java client for Spotify's Web API
package se.michaelthelin.spotify.exceptions;
import org.apache.hc.core5.http.HttpException;
/**
* An exception happened, eg. a HTTP status code 4** or 5** has been returned in a request.
*/
public class SpotifyWebApiException extends HttpException {
public SpotifyWebApiException() {
super();
}
public SpotifyWebApiException(String message) {
super(message);
}
public SpotifyWebApiException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy