View Javadoc

1   package cz.cuni.amis.pogamut.sposh.exceptions;
2   
3   import cz.cuni.amis.pogamut.sposh.elements.ParseException;
4   
5   /**
6    * Thrown when trying to add element into the posh tree, but the tree already
7    * contains element with the same name.
8    * @author Honza
9    */
10  public class DuplicateNameException extends ParseException {
11  
12      public DuplicateNameException(String message) {
13          super(message);
14      }
15  }