Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/main/java/com/heuristiclab/okb/wsclient/Exception/OKBWebServiceFailedException.java @ 5670

Last change on this file since 5670 was 5670, checked in by bfarka, 13 years ago

adding old connector project #1441

File size: 718 bytes
Line 
1/**
2 *
3 */
4package at.hl.okb.wsclient.Exception;
5
6/**
7 * Exception if OKBWebservice Method failed
8 * @author HolperM
9 *
10 */
11public class OKBWebServiceFailedException extends Exception {
12
13  /**
14   *
15   */
16  private static final long serialVersionUID = 1L;
17
18  /**
19   *
20   */
21  public OKBWebServiceFailedException() {
22  }
23
24  /**
25   * @param message
26   */
27  public OKBWebServiceFailedException(String message) {
28    super(message);
29  }
30
31  /**
32   * @param cause
33   */
34  public OKBWebServiceFailedException(Throwable cause) {
35    super(cause);
36  }
37
38  /**
39   * @param message
40   * @param cause
41   */
42  public OKBWebServiceFailedException(String message, Throwable cause) {
43    super(message, cause);
44  }
45
46}
Note: See TracBrowser for help on using the repository browser.