KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > util > ExceptionFactory


1 package org.jahia.clipbuilder.html.util;
2
3 /**
4  * Description of the Class
5  *
6  *@author Tlili Khaled
7  */

8 public abstract class ExceptionFactory {
9     /**
10      * Constructor for the ExceptionFactory object
11      *
12      *@param type Description of Parameter
13      *@param e Description of Parameter
14      *@return Description of the Returned Value
15      */

16     public WebClippingException createWebClippingException(String JavaDoc type, Exception JavaDoc e) {
17         return new WebClippingException(type, e);
18     }
19
20
21     /**
22      * Description of the Class
23      *
24      *@author Tlili Khaled
25      */

26
27
28 }
29
Popular Tags