1 /*
2 * Copyright (c) 2003
3 * Information Desire GmbH
4 * All rights reserved.
5 */
6 package com.infodesire.infobit;
7
8 /***
9 * exception indication that something went wrong in infobit system
10 *
11 * @author konstantin
12 * @created August 6, 2003
13 * @version $Revision: 1.1 $
14 */
15 public class InfobitException extends Exception {
16 /***
17 * Constructor for the InfobitException object
18 */
19 public InfobitException() {
20 super();
21 }
22
23
24 /***
25 * Constructor for the InfobitException object
26 *
27 * @param msg Description of Parameter
28 */
29 public InfobitException(String msg) {
30 super(msg);
31 }
32
33
34 /***
35 * Constructor for the InfobitException object
36 *
37 * @param msg Description of Parameter
38 * @param cause Description of Parameter
39 */
40 public InfobitException(String msg, Throwable cause) {
41 super(msg, cause);
42 }
43
44
45 /***
46 * Constructor for the InfobitException object
47 *
48 * @param cause Description of Parameter
49 */
50 public InfobitException(Throwable cause) {
51 super(cause);
52 }
53 }
This page was automatically generated by Maven