1 /* 2 * @(#)BufferOverflowException.java 1.14 01/05/02 3 * 4 * Copyright 2000 by Sun Microsystems, Inc. All Rights Reserved. 5 * 6 * This software is the proprietary information of Sun Microsystems, Inc. 7 * Use is subject to license terms. 8 */ 9 10 // -- This file was mechanically generated: Do not edit! -- // 11 12 package java.nio; 13 14 15 /** 16 * Unchecked exception thrown when a relative <i>put</i> operation reaches 17 * the target buffer's limit. 18 * 19 * @version 1.14, 01/05/02 20 * @since 1.4 21 */ 22 23 public class BufferOverflowException 24 extends RuntimeException 25 { 26 27 /** 28 * Constructs an instance of this class. 29 */ 30 public BufferOverflowException() { } 31 32 } 33