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

me.hao0.diablo.client.exception.RouteServerException Maven / Gradle / Ivy

package me.hao0.diablo.client.exception;

/**
 * Author: haolin
 * Email:  [email protected]
 */
public class RouteServerException extends RuntimeException {

    public RouteServerException() {
    }

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

    public RouteServerException(String message, Throwable cause) {
        super(message, cause);
    }

    public RouteServerException(Throwable cause) {
        super(cause);
    }

    public RouteServerException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy