mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 02:36:59 +00:00
8 lines
137 B
Java
8 lines
137 B
Java
package net.querz.mca;
|
|
|
|
@FunctionalInterface
|
|
public interface ExceptionFunction<T, R, E extends Exception> {
|
|
|
|
R accept(T t) throws E;
|
|
}
|