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

com.cybermkd.route.exception.InitException Maven / Gradle / Ivy

There is a newer version: 1.0.1.3
Show newest version
package com.cybermkd.route.exception;

/**
 * InitException
 */
public class InitException extends RuntimeException {

    public InitException() {
    }

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

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

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














© 2015 - 2024 Weber Informatics LLC | Privacy Policy