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

ch.inftec.ju.util.JuRuntimeException Maven / Gradle / Ivy

package ch.inftec.ju.util;

/**
 * Base class for ju specific runtime exceptions.
 * @author Martin
 *
 */
public class JuRuntimeException extends RuntimeException {

	public JuRuntimeException() {
		super();
	}

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

	public JuRuntimeException(String message, Throwable cause) {
		super(message, cause);
	}
	
	public JuRuntimeException(String formatMessage, Object... formatArgs) {
		super(String.format(formatMessage, formatArgs));
	}
	
	public JuRuntimeException(String formatMessage, Throwable cause, Object... formatArgs) {
		super(String.format(formatMessage, formatArgs), cause);
	}

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy