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

cn.hutool.core.exceptions.InvocationTargetRuntimeException Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
package cn.hutool.core.exceptions;

/**
 * InvocationTargetException的运行时异常
 *
 * @author looly
 * @since 5.8.1
 */
public class InvocationTargetRuntimeException extends UtilException {

	public InvocationTargetRuntimeException(Throwable e) {
		super(e);
	}

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

	public InvocationTargetRuntimeException(String messageTemplate, Object... params) {
		super(messageTemplate, params);
	}

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

	public InvocationTargetRuntimeException(String message, Throwable throwable, boolean enableSuppression, boolean writableStackTrace) {
		super(message, throwable, enableSuppression, writableStackTrace);
	}

	public InvocationTargetRuntimeException(Throwable throwable, String messageTemplate, Object... params) {
		super(throwable, messageTemplate, params);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy