View Javadoc
1   package org.esigate.aggregator;
2   
3   /**
4    * Exception thrown when an HTML document contains WAT tags with invalid arguments.
5    * 
6    * @author Francois-Xavier Bonnet
7    */
8   public class AggregationSyntaxException extends RuntimeException {
9       private static final long serialVersionUID = 1L;
10  
11      /**
12       * @param string
13       *            Error message
14       */
15      public AggregationSyntaxException(String string) {
16          super(string);
17      }
18  
19  }