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

rpc.turbo.config.ConfigException Maven / Gradle / Ivy

The newest version!
package rpc.turbo.config;

public class ConfigException extends RuntimeException {

	private static final long serialVersionUID = -7816485423426653098L;

	public ConfigException() {
		super();
	}

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

	public ConfigException(String message, boolean writableStackTrace) {
		super(message, null, false, writableStackTrace);
	}

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy