source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/DocumentRepository/src/gov/hhs/fha/nhinc/repository/service/DocumentServiceException.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: 1023 bytes
Line 
1package gov.hhs.fha.nhinc.repository.service;
2
3/**
4 * Exception class for DocumentService exceptions
5 *
6 * @author Neil Webb
7 */
8public class DocumentServiceException extends Exception
9{
10 private static final long serialVersionUID = -4876112548123135498L;
11
12 /**
13 * Default constructor
14 */
15 public DocumentServiceException()
16 {
17 super();
18 }
19
20 /**
21 * Create an exception with a message.
22 *
23 * @param message Exception message
24 */
25 public DocumentServiceException(String message)
26 {
27 super(message);
28 }
29
30 /**
31 * Create an exception with a root cause.
32 *
33 * @param cause Root cause
34 */
35 public DocumentServiceException(Throwable cause)
36 {
37 super(cause);
38 }
39
40 /**
41 * Create an exception with a message and root cause.
42 *
43 * @param message Exception message
44 * @param cause Root cause
45 */
46 public DocumentServiceException(String message, Throwable cause)
47 {
48 super(message, cause);
49 }
50}
Note: See TracBrowser for help on using the repository browser.