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

net.lenni0451.mcping.exception.ReadTimeoutException Maven / Gradle / Ivy

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy