release 2.0.0

This commit is contained in:
tommyskeff
2024-01-02 22:49:44 +00:00
parent d879cbcbfb
commit 0a05da2aeb
28 changed files with 183 additions and 659 deletions

View File

@@ -1,7 +1,8 @@
package dev.tommyjs.futur.function;
@FunctionalInterface
public interface ExceptionalConsumer<T> {
void accept(T value) throws Exception;
void accept(T value) throws Throwable;
}