se.michaelthelin.spotify.exceptions.detailed.NotFoundException 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 requested resource could not be found. This error can be due to a temporary or permanent condition.
*/
public class NotFoundException extends SpotifyWebApiException {
public NotFoundException() {
super();
}
public NotFoundException(String message) {
super(message);
}
public NotFoundException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy