KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openlaszlo > remote > soap > WSDLException


1 /* *****************************************************************************
2  * WSDLException.java
3  * ****************************************************************************/

4
5 /* J_LZ_COPYRIGHT_BEGIN *******************************************************
6 * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *
7 * Use is subject to license terms. *
8 * J_LZ_COPYRIGHT_END *********************************************************/

9
10 package org.openlaszlo.remote.soap;
11
12 public class WSDLException extends Exception JavaDoc {
13
14     public WSDLException()
15     {
16         super();
17     }
18
19     public WSDLException(String JavaDoc message)
20     {
21         super(message);
22     }
23
24     public WSDLException(String JavaDoc message, Throwable JavaDoc cause)
25     {
26         super(message, cause);
27     }
28
29     public WSDLException(Throwable JavaDoc cause)
30     {
31         super(cause);
32     }
33 }
34
Popular Tags