001    /*
002     * Created on 15-Apr-2004
003     */
004    package ca.uhn.hl7v2.protocol;
005    
006    import ca.uhn.hl7v2.HL7Exception;
007    
008    /**
009     * Represents a problem that has occured during transport of a 
010     * message string to / from some other server.
011     * 
012     * @author <a href="mailto:bryan.tripp@uhn.on.ca">Bryan Tripp</a>
013     * @version $Revision: 1.1 $ updated on $Date: 2007/02/19 02:24:38 $ by $Author: jamesagnew $
014     */
015    public class TransportException extends HL7Exception {
016    
017        /**
018         * @param message
019         * @param cause
020         */
021        public TransportException(String message, Throwable cause) {
022            super(message, cause);
023        }
024    
025        /**
026         * @param cause
027         */
028        public TransportException(Throwable cause) {
029            super(cause);
030        }
031    
032        /**
033         * @param message
034         */
035        public TransportException(String message) {
036            super(message);
037        }
038    
039    }