/* * @(#)BufferUnderflowException.java %I% %E% * * Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved. * * This software is the proprietary information of Oracle. * Use is subject to license terms. */ // -- This file was mechanically generated: Do not edit! -- // package java.nio; /** * Unchecked exception thrown when a relative <i>get</i> operation reaches the * source buffer's limit. * * @version %I%, %E% * @since 1.4 */ public class BufferUnderflowException extends RuntimeException { /** * Constructs an instance of this class. */ public BufferUnderflowException() { } }