1   //package net.secodo.jcircuitbreaker.task;
2   //
3   ///**
4   // * A variation of {@link Task} which throws only one type of Exception, in contrast to {@link Task} which throws all 
5   // * possible Exceptions.
6   // * 
7   // */
8   //public interface E1Task<R, E1 extends Exception> extends Task<R> {
9   //
10  //  @Override
11  //  R execute() throws E1;
12  //}