view src/main/java/fj/function/Try0.java @ 1:8ed7d71e8617

minner change
author tatsuki
date Sat, 21 Mar 2015 05:32:16 +0900
parents fe80c1edf1be
children
line wrap: on
line source

package fj.function;

/**
 * A product of <code>A</code> which may throw an <code>Exception</code>.
 *
 * Used to instantiate a lambda that may throw an <code>Exception</code> before converting to a <code>P1</code>.
 *
 * @see fj.Try#f
 * @version %build.number%
 */

public interface Try0<A, Z extends Exception> {

    A f() throws Z;

}