01: package org.mdarad.framework.util.xml;
02:
03: public class UnmarshallingException extends Exception {
04: private static final long serialVersionUID = -5830923175027837099L;
05:
06: public UnmarshallingException() {
07: super ();
08: }
09:
10: public UnmarshallingException(String arg0, Throwable arg1) {
11: super (arg0, arg1);
12: }
13:
14: public UnmarshallingException(String arg0) {
15: super (arg0);
16: }
17:
18: public UnmarshallingException(Throwable arg0) {
19: super(arg0);
20: }
21:
22: }
|