001 package org.vmdb.hl7; 002 003 /** 004 * <p><Title:> Malformed Segment 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 Segment 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 Segment.</p> 011 * @author Michael K. Martin 012 * @version 1.0 013 */ 014 015 public class MalformedSegmentException extends Exception { 016 017 public MalformedSegmentException() { 018 } 019 020 public MalformedSegmentException( String sMsg ) { 021 super( sMsg ); 022 } 023 024 } // End class MalformedSegmentException