View Javadoc
1   package ca.uhn.hl7v2.hoh.api;
2   
3   
4   public class MessageProcessingException extends Exception {
5   
6   	private static final long serialVersionUID = 1L;
7   
8   	public MessageProcessingException(String theMessage) {
9   		super(theMessage);
10  	}
11  	
12  	public MessageProcessingException(String theMessage, Throwable theCause) {
13  		super(theMessage, theCause);
14  	}
15  
16  	public MessageProcessingException(Throwable theCause) {
17  		super(theCause);
18  	}
19  
20  	
21  }