1. /*
  2. * @(#)UnsupportedEncodingException.java 1.13 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. * The Character Encoding is not supported.
  13. *
  14. * @author Asmus Freytag
  15. * @version 1.13, 02/02/00
  16. * @since JDK1.1
  17. */
  18. public class UnsupportedEncodingException
  19. extends IOException
  20. {
  21. /**
  22. * Constructs an UnsupportedEncodingException without a detail message.
  23. */
  24. public UnsupportedEncodingException() {
  25. super();
  26. }
  27. /**
  28. * Constructs an UnsupportedEncodingException with a detail message.
  29. * @param s Describes the reason for the exception.
  30. */
  31. public UnsupportedEncodingException(String s) {
  32. super(s);
  33. }
  34. }