
com.magictools.core.exceptions.InvocationTargetRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magic-tools-core Show documentation
Show all versions of magic-tools-core Show documentation
magic-tools核心,包括集合、字符串、Bean等工具
The newest version!
package com.magictools.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 - 2025 Weber Informatics LLC | Privacy Policy