com.groupbyinc.common.util.ThrowingFunction Maven / Gradle / Ivy
package com.groupbyinc.common.util;
@FunctionalInterface
public interface ThrowingFunction {
R apply(T t) throws Exception;
}
package com.groupbyinc.common.util;
@FunctionalInterface
public interface ThrowingFunction {
R apply(T t) throws Exception;
}