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