01: package org.pentaho.ui.servlet;
02:
03: import org.pentaho.util.PentahoCheckedChainedException;
04:
05: public class AdhocWebServiceException extends
06: PentahoCheckedChainedException {
07:
08: /**
09: *
10: */
11: private static final long serialVersionUID = -1842098457110711029L;
12:
13: /**
14: *
15: */
16: public AdhocWebServiceException() {
17: super ();
18: }
19:
20: /**
21: * @param message
22: */
23: public AdhocWebServiceException(String message) {
24: super (message);
25: }
26:
27: /**
28: * @param message
29: * @param reas
30: */
31: public AdhocWebServiceException(String message, Throwable reas) {
32: super (message, reas);
33: }
34:
35: /**
36: * @param reas
37: */
38: public AdhocWebServiceException(Throwable reas) {
39: super(reas);
40: }
41:
42: }
|