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/11/08 12:08: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 * separate JsdsiException that descends <code>Exception</code> is also
16 * needed needs to be finalised.
17 */
18 public class JsdsiRuntimeException extends RuntimeException {
19
20 /***
21 *
22 */
23 public JsdsiRuntimeException() {
24 super();
25 }
26
27 /***
28 * @param message
29 */
30 public JsdsiRuntimeException(String message) {
31 super(message);
32 }
33
34 /***
35 * @param cause
36 */
37 public JsdsiRuntimeException(Throwable cause) {
38 super(cause);
39 }
40
41 /***
42 * @param message
43 * @param cause
44 */
45 public JsdsiRuntimeException(String message, Throwable cause) {
46 super(message, cause);
47 }
48
49 }
This page was automatically generated by Maven