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

com.insightfullogic.lambdabehave.Block Maven / Gradle / Ivy

There is a newer version: 0.4
Show newest version
package com.insightfullogic.lambdabehave;

/**
 * A runnable which can throw an Exception.
 */
@FunctionalInterface
public interface Block {

    /**
     * The method invoked to run the block of code.
     *
     * @throws Exception an exception that will cause tests to error
     */
    public void run() throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy