1. /*
  2. * @(#)UnsupportedEncodingException.java 1.16 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.io;
  8. /**
  9. * The Character Encoding is not supported.
  10. *
  11. * @author Asmus Freytag
  12. * @version 1.16, 12/19/03
  13. * @since JDK1.1
  14. */
  15. public class UnsupportedEncodingException
  16. extends IOException
  17. {
  18. /**
  19. * Constructs an UnsupportedEncodingException without a detail message.
  20. */
  21. public UnsupportedEncodingException() {
  22. super();
  23. }
  24. /**
  25. * Constructs an UnsupportedEncodingException with a detail message.
  26. * @param s Describes the reason for the exception.
  27. */
  28. public UnsupportedEncodingException(String s) {
  29. super(s);
  30. }
  31. }