com.transferwise.common.baseutils.function.FunctionWithException Maven / Gradle / Ivy
package com.transferwise.common.baseutils.function;
@FunctionalInterface
public interface FunctionWithException {
@SuppressWarnings("RedundantThrows")
R apply(T t) throws Exception;
}