01: package org.objectweb.celtix.bus.bindings.xml;
02:
03: import javax.xml.ws.ProtocolException;
04:
05: public class XMLBindingException extends ProtocolException {
06:
07: private static final long serialVersionUID = -4418907917249006910L;
08:
09: public XMLBindingException() {
10: super ();
11: }
12:
13: public XMLBindingException(String msg) {
14: super (msg);
15: }
16:
17: public XMLBindingException(String msg, Throwable t) {
18: super (msg, t);
19: }
20:
21: public XMLBindingException(Throwable t) {
22: super(t);
23: }
24: }
|