View Javadoc
1   /**
2    * 
3    */
4   package org.melati.servlet.test;
5   
6   /**
7    * Exception with matching templates on classpath.
8    * @author timp
9    * @since 14-Dec-2006
10   */
11  public class ClasspathRenderedException extends Exception {
12  
13    private static final long serialVersionUID = 1L;
14  
15    /**
16     * Constructor.
17     */
18    public ClasspathRenderedException() {
19      super();
20    }
21  
22    /**
23     * Constructor.
24     * @param message the message
25     */
26    public ClasspathRenderedException(String message) {
27      super(message);
28    }
29  
30  
31  }