1. /*
  2. * @(#)InvalidMarkException.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 an attempt is made to reset a buffer
  13. * when its mark is not defined.
  14. *
  15. * @version 1.14, 01/05/02
  16. * @since 1.4
  17. */
  18. public class InvalidMarkException
  19. extends IllegalStateException
  20. {
  21. /**
  22. * Constructs an instance of this class.
  23. */
  24. public InvalidMarkException() { }
  25. }