View Javadoc
1   /*
2    * Created on Aug 25, 2004
3    *
4    */
5   package org.kuali.ole.module.purap.exception;
6   
7   public class CxmlParseException extends Exception {
8   
9       public CxmlParseException() {
10          super();
11      }
12  
13      public CxmlParseException(String arg0) {
14          super(arg0);
15      }
16  
17      public CxmlParseException(String arg0, Throwable arg1) {
18          super(arg0, arg1);
19      }
20  
21      public CxmlParseException(Throwable arg0) {
22          super(arg0);
23      }
24  
25  }