cn.hutool.core.exceptions.InvocationTargetRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
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