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

top.jfunc.common.ExceptionalRunnable Maven / Gradle / Ivy

There is a newer version: 1.8.5
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy