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