Package java.nio

Examples of java.nio.BufferUnderflowException.initCause()


            //
            // Morph an IndexOutOfBoundsException to a BufferUnderflowException
            // for consistency.
            //
            final BufferUnderflowException bue = new BufferUnderflowException();
            bue.initCause( e );
            throw bue;
        }
    }

    /**
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.