1. /*
  2. * @(#)CharConversionException.java 1.12 00/02/02
  3. *
  4. * Copyright 1996-2000 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. package java.io;
  11. /**
  12. * Base class for character conversion exceptions.
  13. *
  14. * @author Asmus Freytag
  15. * @version 1.12, 02/02/00
  16. * @since JDK1.1
  17. */
  18. public class CharConversionException
  19. extends java.io.IOException
  20. {
  21. /**
  22. * This provides no detailed message.
  23. */
  24. public CharConversionException() {
  25. }
  26. /**
  27. * This provides a detailed message.
  28. *
  29. * @param s the detailed message associated with the exception.
  30. */
  31. public CharConversionException(String s) {
  32. super(s);
  33. }
  34. }