001    package org.vmdb.hl7;
002    
003    /**
004     * <p><Title:> Malformed Field Exception. </p>
005     * <p>Description: HL7 Network Connectivity For VMDB. </p>
006     * <p>Copyright: Copyright (c) 2002-2003. </p>
007     * <p>Company: Veterinary Medical Database (VMDB). </p>
008     * <p>Thrown when an incoming message contains a Field or Component that
009     * cannot be parsed in accordance with the rule for the specified HL7 data
010     * type, or when an API call attempts to build an invalid Field or Component.</p>
011     * @author Michael K. Martin
012     * @version 1.0
013     */
014    
015    public class MalformedFieldException extends Exception {
016    
017       public MalformedFieldException() {
018       }
019    
020       public MalformedFieldException( String sMsg ) {
021          super( sMsg );
022       }
023    
024    } // End class MalformedFieldException