mirror of
https://github.com/tommyskeff/futur4j.git
synced 2026-01-17 23:16:01 +00:00
8 lines
126 B
Java
8 lines
126 B
Java
package dev.tommyjs.futur.function;
|
|
|
|
public interface ExceptionalConsumer<T> {
|
|
|
|
void accept(T value) throws Exception;
|
|
|
|
}
|