yangys
2024-04-13 0a583efe2ddead0cdd37fd83deff43d43745a05f
1
2
3
4
5
6
package com.qianwen.core.tool.function;
 
@FunctionalInterface
public interface CheckedRunnable {
    void run() throws Throwable;
}