
cn.micro.core.function.CheckedRunnable Maven / Gradle / Ivy
package cn.micro.core.function;
import java.io.Serializable;
/**
* 受检的 runnable
*/
@FunctionalInterface
public interface CheckedRunnable extends Serializable {
/**
* Run this runnable.
*
* @throws Throwable CheckedException
*/
void run() throws Throwable;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy