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. // -- This file was mechanically generated: Do not edit! -- //
  10. package java.nio;
  11. /**
  12. * Unchecked exception thrown when a relative <i>put</i> operation reaches
  13. * the target buffer's limit.
  14. *
  15. * @version 1.14, 01/05/02
  16. * @since 1.4
  17. */
  18. public class BufferOverflowException
  19. extends RuntimeException
  20. {
  21. /**
  22. * Constructs an instance of this class.
  23. */
  24. public BufferOverflowException() { }
  25. }