package lambdas;

/**
 * Exception transparency example
 *
 * @author Howard Lovatt
 */
public interface Method1<R, A1, throws E> { R call( A1 a1 ) throws E; }