Interface ThrowingBiConsumer<T,U,E extends Exception>

Type Parameters:
T - The type of the first input to the consumer
U - The type of the second input to the consumer
E - The type of the exception that may be thrown
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ThrowingBiConsumer<T,U,E extends Exception>
Represents an operation that accepts two input arguments and returns no result, declaring a possibly-thrown exception.