Interface EConsumer<T,E extends Exception>

Type Parameters:
T - the type of the input argument to the operation
E - the type of exception that the operation might throw
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 EConsumer<T,E extends Exception>
A functional interface that represents an operation on a single input that might throw a checked exception of a specific type. This interface is designed for use with lambda expressions or method references when a checked exception needs to be handled.
Author:
Syam