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