[New] Added CheckedRunnable

This commit is contained in:
Robert von Burg 2022-05-05 13:17:27 +02:00
parent e03a365b9d
commit b61e982fc5
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package li.strolch.utils;
@FunctionalInterface
public interface CheckedRunnable {
void run() throws Exception;
}