1. /*
  2. * @(#)CharConversionException.java 1.14 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.io;
  8. /**
  9. * Base class for character conversion exceptions.
  10. *
  11. * @author Asmus Freytag
  12. * @version 1.14, 01/23/03
  13. * @since JDK1.1
  14. */
  15. public class CharConversionException
  16. extends java.io.IOException
  17. {
  18. /**
  19. * This provides no detailed message.
  20. */
  21. public CharConversionException() {
  22. }
  23. /**
  24. * This provides a detailed message.
  25. *
  26. * @param s the detailed message associated with the exception.
  27. */
  28. public CharConversionException(String s) {
  29. super(s);
  30. }
  31. }