19 lines
436 B
Java
19 lines
436 B
Java
package com.hypixel.hytale.sneakythrow.supplier;
|
|
|
|
import com.hypixel.hytale.sneakythrow.SneakyThrow;
|
|
import java.util.function.Supplier;
|
|
|
|
@FunctionalInterface
|
|
public interface ThrowableSupplier<T, E extends Throwable> extends Supplier<T> {
|
|
@Override
|
|
default T get() {
|
|
try {
|
|
return this.getNow();
|
|
} catch (Throwable var2) {
|
|
throw SneakyThrow.sneakyThrow(var2);
|
|
}
|
|
}
|
|
|
|
T getNow() throws E;
|
|
}
|