1
2
3
4
5
6
7 package gov.noaa.edsd.sessionlessRemoteXmlDb;
8
9 /***
10 *
11 * @author tns
12 */
13 public class SessionlessException extends java.lang.Exception {
14
15 /***
16 * Creates a new instance of <code>SessionlessException</code> without detail message.
17 */
18 public SessionlessException() {
19 }
20
21
22 /***
23 * Constructs an instance of <code>SessionlessException</code> with the specified detail message.
24 * @param msg the detail message.
25 */
26 public SessionlessException(String msg) {
27 super(msg);
28 }
29 /***
30 * Constructs an instance of <code>SessionlessException</code> with the specified root cause.
31 * @param thr the root cause.
32 */
33 public SessionlessException(Throwable thr) {
34 super(thr);
35 }
36
37 /***
38 * Constructs an instance of <code>SessionlessException</code> with the
39 * specified detail message and root cause.
40 * @param msg the detail message.
41 * @param thr the root cause.
42 */
43 public SessionlessException(String msg, Throwable thr) {
44 super(msg,thr);
45 }
46
47 }