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