1 /*
2 * Copyright 2002, Aegeus Technology Limited.
3 * All rights reserved.
4 */
5 package jsdsi;
6
7
8 /***
9 * @author Sean Radford
10 * @version $Revision: 1.2 $ $Date: 2004/06/09 16:30:08 $
11 *
12 * Superclass for JSDSI Exceptions. Extending
13 * <code>RuntimeException</code> was chosen as in the vast majority of
14 * scenarios, the calling application cannot recover. Whether, a
15 * seperate JsdsiException that decends <code>Exception</code> is also
16 * needed needs to be finalised.
17 *
18 * @deprecated This class is incorrectly spelt. Use {@link
19 * JsdsiRuntimeException} instead.
20 */
21 public class JsdiRuntimeException extends RuntimeException {
22
23 /***
24 *
25 */
26 public JsdiRuntimeException() {
27 super();
28 }
29
30 /***
31 * @param message
32 */
33 public JsdiRuntimeException(String message) {
34 super(message);
35 }
36
37 /***
38 * @param cause
39 */
40 public JsdiRuntimeException(Throwable cause) {
41 super(cause);
42 }
43
44 /***
45 * @param message
46 * @param cause
47 */
48 public JsdiRuntimeException(String message, Throwable cause) {
49 super(message, cause);
50 }
51
52 }
This page was automatically generated by Maven