001 package ca.uhn.hl7v2.conf.check; 002 003 /** 004 * An element that a profile defines as "not used" (X) is present in the 005 * message. 006 * @author Bryan Tripp 007 */ 008 public class XElementPresentException extends ProfileNotFollowedException { 009 010 /** 011 * Constructs an instance of <code>XElementPresentException</code> with the specified detail message. 012 * @param msg the detail message. 013 */ 014 public XElementPresentException(String msg) { 015 super(msg); 016 } 017 018 }