com.kttdevelopment.mal4j.AndroidCompatibilityException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mal4j Show documentation
Show all versions of mal4j Show documentation
Java wrapper for the official MyAnimeList API
package com.kttdevelopment.mal4j;
/**
* This exception is no longer thrown.
*
* Thrown if the Android version is not compatible with a genuine Java runtime.
*
* @deprecated exception is no longer thrown
*
* @since 2.2.1
* @version 2.4.0
* @author Katsute
*/
@Deprecated
public final class AndroidCompatibilityException extends RuntimeException {
@SuppressWarnings("SameParameterValue")
AndroidCompatibilityException(final String message){
super(message);
}
}