com.github.t9t.minecraftrconclient.RconClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minecraft-rcon-client Show documentation
Show all versions of minecraft-rcon-client Show documentation
An RCON client for Minecraft servers
The newest version!
package com.github.t9t.minecraftrconclient;
public class RconClientException extends RuntimeException {
public RconClientException(String message) {
super(message);
}
public RconClientException(String message, Throwable cause) {
super(message, cause);
}
}