001/*
002 * Created on Mar 25, 2009
003 */
004package ca.uhn.hl7v2.model.v26.datatype;
005
006import ca.uhn.hl7v2.model.Message;
007
008/**
009 * Special datatype used in fields which have been withdrawn from the HL7
010 * specification and should not contain a value.
011 * 
012 * @author <a href="mailto:james.agnew@uhn.on.ca">James Agnew</a>
013 * @version $Revision: 1.1 $ updated on $Date: 2009-03-26 00:39:49 $ by $Author: jamesagnew $
014 */
015public class NULLDT extends ca.uhn.hl7v2.model.primitive.NULLDT
016{
017
018    private static final long serialVersionUID = 1368888406738419721L;
019
020    /**
021     * Constructor
022     * 
023     * @param theMessage The message
024     */
025    public NULLDT(Message theMessage) {
026        super(theMessage);
027    }
028
029}