com.tukeof.common.function.ThrowableBiConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-core Show documentation
Show all versions of common-core Show documentation
a common and useful pure java library
The newest version!
package com.tukeof.common.function;
@FunctionalInterface
public interface ThrowableBiConsumer {
void accept(T1 v1, T2 v2) throws Exception;
}