All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.michaelthelin.spotify.exceptions.SpotifyWebApiException Maven / Gradle / Ivy

There is a newer version: 9.0.0-RC1
Show newest version
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