All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.litesoft.exceptionals.ExceptionalBiConsumer Maven / Gradle / Ivy

Go to download

Set of Functional Interfaces that can throw an Exception -- to support defining method signatures that can take dynamic behavior that might throw an Exception

The newest version!
package org.litesoft.exceptionals;

/**
 * Simple extension of the Java 8+ BiConsumer that can throw an Exception.
 */
@SuppressWarnings("unused")
public interface ExceptionalBiConsumer {
    void accept( T t, U u )
            throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy