se.michaelthelin.spotify.exceptions.detailed.UnauthorizedException 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.detailed;
import se.michaelthelin.spotify.exceptions.SpotifyWebApiException;
/**
* The request requires user authorization or, if the request included authorization credentials, authorization has been
* refused for those credentials.
*/
public class UnauthorizedException extends SpotifyWebApiException {
public UnauthorizedException() {
super();
}
public UnauthorizedException(String message) {
super(message);
}
public UnauthorizedException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy