1. /*
  2. * @(#)CharConversionException.java 1.9 01/11/29
  3. *
  4. * Copyright 2002 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. * @author Asmus Freytag
  11. * @version 1.9, 11/29/01
  12. * @since JDK1.1
  13. */
  14. public class CharConversionException
  15. extends java.io.IOException
  16. {
  17. /**
  18. * provides no detailed message
  19. */
  20. public CharConversionException() {
  21. }
  22. /**
  23. * provides a detailed message
  24. * @param s detailed message
  25. */
  26. public CharConversionException(String s) {
  27. super(s);
  28. }
  29. }