com.cryptomorin.xseries.profiles.exceptions.MojangAPIException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of XSeries Show documentation
Show all versions of XSeries Show documentation
A set of utilities for Minecraft plugins
package com.cryptomorin.xseries.profiles.exceptions;
/**
* If any unknown non-recoverable network issues occur, unless it's a {@link MojangAPIRetryException}
*/
public class MojangAPIException extends ProfileException {
public MojangAPIException(String message) {
super(message);
}
public MojangAPIException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy