View Javadoc

1   package cz.cuni.amis.pogamut.sposh.exceptions;
2   
3   /**
4    * When plan is missing root node, throw this exception.
5    * @author Honza
6    */
7   public class MissingRootException extends RuntimeException {
8   
9       public MissingRootException(String rootName) {
10          super("Plan is missing root node \"" + rootName + "\".");
11      }
12  
13  }