View Javadoc

1   /*** 
2   * This program is licensed under Common Public License Version 0.5.
3   *
4   * For License Information and conditions of use, see "LICENSE" in packaged
5   */
6   
7   package net.wangs.xmlutil;
8   
9   /***
10  * XMLUtilException tags exceptions for XMLUtil
11  * @author <a href="mailto:yuqingwang_99@yahoo.com">Yuqing Wang</a>
12  */
13  public class XMLUtilException extends Exception
14  {
15    /***
16    *  Exception constructor
17    */
18    public XMLUtilException() {
19      super();
20    }  
21  
22    /***
23    *  XMLUtilException constructor
24    *  @param s 
25    */
26    public XMLUtilException(String s) {
27      super(s);
28    }
29  
30  }
31