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