01: /*
02: * WSDLException.java
03: *
04: * Created on February 20, 2007, 11:19 AM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.modules.e2e.wsdl;
11:
12: /**
13: *
14: * @author Misk
15: */
16: public class WSDLException extends Exception {
17:
18: public WSDLException(String message) {
19: super (message);
20: }
21:
22: public WSDLException(Throwable cause) {
23: super(cause);
24: }
25: }
|