io.github.sornerol.chess.pubapi.exception.ChessComPubApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chesscom-pubapi-wrapper Show documentation
Show all versions of chesscom-pubapi-wrapper Show documentation
A wrapper for Chess.com's PubAPI.
The newest version!
package io.github.sornerol.chess.pubapi.exception;
/**
* This exception is thrown whenever a request to the Chess.com PubAPI returns a non-success return code, or when data
* fails validation.
*/
public class ChessComPubApiException extends Exception{
public ChessComPubApiException(String message) {
super(message);
}
}