View Javadoc

1   /* $Id: HttpApplicationNetworkException.java,v 1.4 2004/09/01 15:42:26 jdt Exp $
2    * Created on Jul 27, 2004
3    * Copyright (C) 2004 AstroGrid. All rights reserved.
4    *
5    * This software is published under the terms of the AstroGrid 
6    * Software License version 1.2, a copy of which has been included 
7    * with this distribution in the LICENSE.txt file.  
8    */
9   ///CLOVER:OFF 
10  package org.astrogrid.applications.http.exceptions;
11  
12  import java.io.IOException;
13  
14  /***
15   * Caused by problems on the network such as timeouts
16   * @author jdt
17   */
18  public class HttpApplicationNetworkException extends HttpApplicationWebServiceException {
19  
20  
21      /***
22       * Constructor
23       *
24       * 
25       */
26      public HttpApplicationNetworkException() {
27          super();
28      }
29      /***
30       * Constructor
31       *
32       * @param arg0
33       */
34      public HttpApplicationNetworkException(String arg0) {
35          super(arg0);
36      }
37  
38      /***
39       * Constructor
40       *
41       * @param string
42       * @param e
43       */
44      public HttpApplicationNetworkException(String string, IOException e) {
45          super(string, e);
46          // @TODO Auto-generated constructor stub
47      }
48  }
49  
50  /* 
51   * $Log: HttpApplicationNetworkException.java,v $
52   * Revision 1.4  2004/09/01 15:42:26  jdt
53   * Merged in Case 3
54   *
55   * Revision 1.1.4.2  2004/08/11 22:55:35  jdt
56   * Refactoring, and a lot of new unit tests.
57   *
58   * Revision 1.1.4.1  2004/07/27 17:20:25  jdt
59   * merged from applications_JDT_case3
60   *
61   * Revision 1.1.2.1  2004/07/27 17:12:44  jdt
62   * refactored exceptions and finished tests for HttpServiceClient
63   *
64   */