KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bus > bindings > xml > XMLBindingException


1 package org.objectweb.celtix.bus.bindings.xml;
2
3 import javax.xml.ws.ProtocolException;
4
5 public class XMLBindingException extends ProtocolException {
6     
7     private static final long serialVersionUID = -4418907917249006910L;
8
9     public XMLBindingException() {
10         super();
11     }
12
13     public XMLBindingException(String JavaDoc msg) {
14         super(msg);
15     }
16
17     public XMLBindingException(String JavaDoc msg, Throwable JavaDoc t) {
18         super(msg, t);
19     }
20
21     public XMLBindingException(Throwable JavaDoc t) {
22         super(t);
23     }
24 }
25
Popular Tags