top.jfunc.common.ExceptionalRunnable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
common utils like IOUtil,StrUtil,HoldProcessor.etc.
package top.jfunc.common;
/**
* 可以抛出异常的runnable,{@link Runnable}
* @author xiongshiyan at 2020/8/12 , contact me with email [email protected] or phone 15208384257
*/
@FunctionalInterface
public interface ExceptionalRunnable {
/**
* 执行的代码
* @throws Exception 可以抛出异常
*/
void run() throws Exception;
}