View Javadoc

1   package org.codehaus.xfire.wsdl;
2   
3   import org.codehaus.xfire.XFireException;
4   
5   public class WSDLBuildingException
6       extends XFireException
7   {
8       public WSDLBuildingException(String string)
9       {
10          super(string);
11      }
12  
13      public WSDLBuildingException()
14      {
15          super();
16      }
17  
18      public WSDLBuildingException(String message, Throwable cause)
19      {
20          super(message, cause);
21      }
22  }