KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mdarad > framework > util > xml > UnmarshallingException


1 package org.mdarad.framework.util.xml;
2
3 public class UnmarshallingException extends Exception JavaDoc {
4     private static final long serialVersionUID = -5830923175027837099L;
5
6     public UnmarshallingException() {
7         super();
8     }
9
10     public UnmarshallingException(String JavaDoc arg0, Throwable JavaDoc arg1) {
11         super(arg0, arg1);
12     }
13
14     public UnmarshallingException(String JavaDoc arg0) {
15         super(arg0);
16     }
17
18     public UnmarshallingException(Throwable JavaDoc arg0) {
19         super(arg0);
20     }
21     
22
23 }
24
Popular Tags