001package ca.uhn.hl7v2.hoh.encoder; 002 003import ca.uhn.hl7v2.hoh.api.DecodeException; 004 005public class AuthorizationFailureException extends DecodeException { 006 private static final long serialVersionUID = 1L; 007 008 public AuthorizationFailureException(String theMessage) { 009 super(theMessage); 010 } 011 012 public AuthorizationFailureException(String theMessage, Throwable theCause) { 013 super(theMessage, theCause); 014 } 015 016}