source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Common/NhincLib/src/gov/hhs/fha/nhinc/properties/PropertyAccessException.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.0 KB
Line 
1package gov.hhs.fha.nhinc.properties;
2
3/**
4 * This exception is thrown when an error occurs accessing properties.
5 *
6 * @author Les Westberg
7 */
8public class PropertyAccessException extends Exception
9{
10 /**
11 * Default constructor.
12 */
13 public PropertyAccessException()
14 {
15 super();
16 }
17
18 /**
19 * Constructor with an envloping exception.
20 *
21 * @param e The exception that caused this one.
22 */
23 public PropertyAccessException(Exception e)
24 {
25 super(e);
26 }
27
28 /**
29 * Constructor with the given exception and message.
30 *
31 * @param sMessage The message to place in the exception.
32 * @param e The exception that triggered this one.
33 */
34 public PropertyAccessException(String sMessage, Exception e)
35 {
36 super(sMessage, e);
37 }
38
39 /**
40 * Constructor with a given message.
41 *
42 * @param sMessage The message for the exception.
43 */
44 public PropertyAccessException(String sMessage)
45 {
46 super(sMessage);
47 }
48
49}
Note: See TracBrowser for help on using the repository browser.