View Javadoc

1   package cz.cuni.amis.pogamut.sposh.exceptions;
2   
3   /**
4    * Exception that is used when I am trying to execute shade plan, but according
5    * to priority and triggers of its elements, no element is eligible to be
6    * selected.
7    * @author Honza
8    */
9   public class NoEligibleElementException extends Exception {
10  
11      public NoEligibleElementException(String message) {
12          super(message);
13      }
14  }