001    /**
002     * Copyright (C) 2009-2013 Barchart, Inc. <http://www.barchart.com/>
003     *
004     * All rights reserved. Licensed under the OSI BSD License.
005     *
006     * http://www.opensource.org/licenses/bsd-license.php
007     */
008    package com.barchart.udt.net;
009    
010    import com.barchart.udt.ErrorUDT;
011    import com.barchart.udt.ExceptionUDT;
012    
013    /**
014     * 
015     */
016    @SuppressWarnings("serial")
017    public class ExceptionReceiveUDT extends ExceptionUDT {
018    
019            protected ExceptionReceiveUDT(final int socketID, final ErrorUDT error,
020                            final String comment) {
021                    super(socketID, error, comment);
022            }
023    
024    }