1 /**
2 The contents of this file are subject to the Mozilla Public License Version 1.1
3 (the "License"); you may not use this file except in compliance with the License.
4 You may obtain a copy of the License at http://www.mozilla.org/MPL/
5 Software distributed under the License is distributed on an "AS IS" basis,
6 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
7 specific language governing rights and limitations under the License.
8
9 The Original Code is "ReceivingApplicationException.java". Description:
10 "Represents any problem encountered during processing of a message by a
11 ReceivingApplication"
12
13 The Initial Developer of the Original Code is University Health Network. Copyright (C)
14 2002, 2005. All Rights Reserved.
15
16 Contributor(s): ______________________________________.
17
18 Alternatively, the contents of this file may be used under the terms of the
19 GNU General Public License (the "GPL"), in which case the provisions of the GPL are
20 applicable instead of those above. If you wish to allow use of your version of this
21 file only under the terms of the GPL and not to allow others to use your version
22 of this file under the MPL, indicate your decision by deleting the provisions above
23 and replace them with the notice and other provisions required by the GPL License.
24 If you do not delete the provisions above, a recipient may use your version of
25 this file under either the MPL or the GPL.
26 */
27 package ca.uhn.hl7v2.protocol;
28
29 import java.util.Map;
30
31 /**
32 * Represents any problem encountered during processing of a message by a
33 * <code>ReceivingApplication</code>.
34 *
35 * Note that this replaces ca.uhn.hl7v2.app.ApplicationException in HAPI 0.5.
36 *
37 * @author <a href="mailto:bryan.tripp@uhn.on.ca">Bryan Tripp</a>
38 * @version $Revision: 1.1 $ updated on $Date: 2007-02-19 02:24:38 $ by $Author: jamesagnew $
39 */
40 public class ReceivingApplicationException extends Exception {
41
42 private String incomingMessage;
43 private String outgoingMessage;
44 private Map<String, Object> incomingMetadata;
45
46 /**
47 * Constructs an instance of <code>ReceivingApplicationException</code> with the specified detail message.
48 */
49 public ReceivingApplicationException(String msg) {
50 super(msg);
51 }
52
53 /**
54 * Constructs a new exception with the specified underlying cause.
55 *
56 * @param cause an exception that is the reason for this exception
57 */
58 public ReceivingApplicationException(Throwable cause) {
59 super(cause);
60 }
61
62 /**
63 * Constructs a new exception with the specified underlying cause
64 * and detail message.
65 *
66 * @param msg detail message
67 * @param cause an exception that is the reason for this exception
68 */
69 public ReceivingApplicationException(String msg, Throwable cause) {
70 super(msg, cause);
71 }
72
73 public ReceivingApplicationException(Throwable cause, String incomingMessage, String outgoingMessage, Map<String, Object> incomingMetadata) {
74 super(cause);
75 this.incomingMessage = incomingMessage;
76 this.outgoingMessage = outgoingMessage;
77 this.incomingMetadata = incomingMetadata;
78 }
79
80 public String getIncomingMessage() {
81 return incomingMessage;
82 }
83
84
85 public String getOutgoingMessage() {
86 return outgoingMessage;
87 }
88
89 public Map<String, Object> getIncomingMetadata() {
90 return incomingMetadata;
91 }
92
93 }