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

com.github.t9t.minecraftrconclient.RconClientException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy