1 /* $Id: HttpApplicationWebServiceURLException.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 /***
16 * Caused by an incorrect or malformed URL
17 * @author jdt
18 */
19 public class HttpApplicationWebServiceURLException extends HttpApplicationWebServiceException {
20
21
22 /***
23 * Constructor
24 *
25 *
26 */
27 public HttpApplicationWebServiceURLException() {
28 super();
29 }
30 /***
31 * Constructor
32 *
33 * @param arg0
34 */
35 public HttpApplicationWebServiceURLException(String arg0) {
36 super(arg0);
37 }
38 /***
39 * Constructor
40 *
41 * @param string
42 * @param e
43 */
44 public HttpApplicationWebServiceURLException(String string, IOException e) {
45 super(string, e);
46 // @TODO Auto-generated constructor stub
47 }
48 }
49
50 /*
51 * $Log: HttpApplicationWebServiceURLException.java,v $
52 * Revision 1.4 2004/09/01 15:42:26 jdt
53 * Merged in Case 3
54 *
55 * Revision 1.1.4.1 2004/07/27 17:20:25 jdt
56 * merged from applications_JDT_case3
57 *
58 * Revision 1.1.2.1 2004/07/27 17:12:44 jdt
59 * refactored exceptions and finished tests for HttpServiceClient
60 *
61 */