1. /*
  2. * @(#)CharacterCodingException.java 1.2 01/09/17
  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.charset;
  11. /**
  12. * Checked exception thrown when a character encoding
  13. * or decoding error occurs.
  14. *
  15. * @version 1.2, 01/09/17
  16. * @since 1.4
  17. */
  18. public class CharacterCodingException
  19. extends java.io.IOException
  20. {
  21. /**
  22. * Constructs an instance of this class.
  23. */
  24. public CharacterCodingException() { }
  25. }