001    package org.vmdb.hl7;
002    
003    /**
004     * <p><Title:> Error (ERR) Segment. </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>Use of this process has not yet been implemented in high level code.  See
009     * HL7 Standard Chapter 2 for details.</p>
010     * @author Michael K. Martin
011     * @version 1.0
012     */
013    
014    public class ERRSegment extends HL7Segment {
015       private String sNm = "ERR";
016       private String sRl = "DT CM_ERR";
017    
018       public ERRSegment() {
019          setName( sNm );
020          setRule( sRl );
021       }
022    
023       public ERRSegment( HL7SegmentContainer msgParent ) {
024          super( msgParent );
025          setName( sNm );
026          setRule( sRl );
027       }
028    
029    } // End class ERRSegment
030