silentbalanceyh/vertx-zero

View on GitHub
vertx-gaia/vertx-ams/src/main/java/io/horizon/fn/ExceptionSupplier.java

Summary

Maintainability
A
0 mins
Test Coverage
package io.horizon.fn;

/**
 * Supplier function interface, this interface could throw out
 * java.lang.Exception for specific use.
 *
 * @param <T>
 */
@FunctionalInterface
public interface ExceptionSupplier<T> extends ESupplier<T, Exception> {

}