View Javadoc
1   package org.andromda.cartridges.support.webservice.client;
2   
3   /**
4    * An exception thrown during an unexpected error during the {@link WebServiceClient}
5    * execution.
6    *
7    * @author Chad Brandon
8    */
9   public class WebServiceClientException
10      extends RuntimeException
11  {
12      private static final long serialVersionUID = 34L;
13      /**
14       * Constructs an instance of WebServiceClientException.
15       *
16       * @param parent
17       */
18      public WebServiceClientException(Throwable parent)
19      {
20          super(parent);
21      }
22  
23      /**
24       * Constructs an instance of WebServiceClientException.
25       *
26       * @param message
27       */
28      public WebServiceClientException(String message)
29      {
30          super(message);
31      }
32  
33      /**
34       * Constructs an instance of WebServiceClientException.
35       *
36       * @param message
37       * @param parent
38       */
39      public WebServiceClientException(
40          String message,
41          Throwable parent)
42      {
43          super(message, parent);
44      }
45  }