net.lenni0451.mcping.exception.ReadTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MCPing Show documentation
Show all versions of MCPing Show documentation
A simple library to ping minecraft servers
The newest version!
package net.lenni0451.mcping.exception;
import java.io.IOException;
public class ReadTimeoutException extends IOException {
private final int readTimeout;
public ReadTimeoutException(final int readTimeout) {
super("Read timed out (> " + readTimeout + " ms)");
this.readTimeout = readTimeout;
}
public int getReadTimeout() {
return this.readTimeout;
}
}