source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Common/NhincLib/src/gov/hhs/fha/nhinc/connectmgr/ConnectionManagerException.java@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 1.1 KB
Line 
1package gov.hhs.fha.nhinc.connectmgr;
2
3/**
4 * This exception is thrown when an error occurs accessing properties.
5 *
6 * @author Les Westberg
7 */
8public class ConnectionManagerException extends Exception
9{
10 private static final long serialVersionUID = -2763323716005332016L;
11
12 /**
13 * Default constructor.
14 */
15 public ConnectionManagerException()
16 {
17 super();
18 }
19
20 /**
21 * Constructor with an envloping exception.
22 *
23 * @param e The exception that caused this one.
24 */
25 public ConnectionManagerException(Exception e)
26 {
27 super(e);
28 }
29
30 /**
31 * Constructor with the given exception and message.
32 *
33 * @param sMessage The message to place in the exception.
34 * @param e The exception that triggered this one.
35 */
36 public ConnectionManagerException(String sMessage, Exception e)
37 {
38 super(sMessage, e);
39 }
40
41 /**
42 * Constructor with a given message.
43 *
44 * @param sMessage The message for the exception.
45 */
46 public ConnectionManagerException(String sMessage)
47 {
48 super(sMessage);
49 }
50
51}
Note: See TracBrowser for help on using the repository browser.