001    package org.vmdb.hl7;
002    
003    /**
004     * <p><Title:> Malformed Rule Exception. </p>
005     * Description: HL7 Network Connectivity For VMDB. <br>
006     * Copyright: Copyright (c) 2002-2003. <br>
007     * Company: Veterinary Medical Database (VMDB). <br>
008     * Thrown when the rule parser finds unbalanced delimiters or other problems
009     * with the rule string itself.<br>
010     * @author Michael K. Martin
011     * @version 1.0
012     */
013    
014    public class MalformedRuleException extends Exception {
015    
016       public MalformedRuleException() {
017       }
018    
019       public MalformedRuleException( String sMsg ) {
020          super( sMsg );
021       }
022    
023    } // End class MalformedRuleException