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

com.tailoredshapes.underbar.function.ExceptionalFunctions Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
package com.tailoredshapes.underbar.function;

public interface ExceptionalFunctions {

    @FunctionalInterface
    interface RunnableThatMight {
        void run() throws E;
    }

    @FunctionalInterface
    interface RunnableWithOops extends RunnableThatMight {
        void run() throws Throwable;
    }

    @FunctionalInterface
    interface SupplierThatMight {
        T get() throws E;
    }

    @FunctionalInterface
    interface SupplierWithOops extends SupplierThatMight {
        T get() throws Throwable;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy