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

com.github.yafeiwang124.common.tcp.network.exception.NotFoundServerException Maven / Gradle / Ivy

package com.github.yafeiwang124.common.tcp.network.exception;

public class NotFoundServerException extends Exception{

    public NotFoundServerException() {
        super();
    }

    public NotFoundServerException(String message) {
        super(message);
    }

    public NotFoundServerException(String message, Throwable throwable) {
        super(message, throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy