01: /* *****************************************************************************
02: * WSDLException.java
03: * ****************************************************************************/
04:
05: /* J_LZ_COPYRIGHT_BEGIN *******************************************************
06: * Copyright 2001-2007 Laszlo Systems, Inc. All Rights Reserved. *
07: * Use is subject to license terms. *
08: * J_LZ_COPYRIGHT_END *********************************************************/
09:
10: package org.openlaszlo.remote.swf.soap;
11:
12: public class WSDLException extends Exception {
13:
14: public WSDLException() {
15: super ();
16: }
17:
18: public WSDLException(String message) {
19: super (message);
20: }
21:
22: public WSDLException(String message, Throwable cause) {
23: super (message, cause);
24: }
25:
26: public WSDLException(Throwable cause) {
27: super(cause);
28: }
29: }
|