View Javadoc

1   package cz.cuni.amis.pogamut.base.utils.future;
2   
3   import cz.cuni.amis.utils.exception.PogamutException;
4   
5   /**
6    * Exception that is thrown whenever the result of {@link ComponentFuture} can't be obtained.
7    * @author Jimmy
8    */
9   public class ComponentFutureException extends PogamutException {
10  
11  	public ComponentFutureException(String message, Object origin) {
12  		super(message, origin);
13  	}
14  	
15  	public ComponentFutureException(String message, Throwable cause) {
16  		super(message, cause);
17  	}
18  
19  }