1. /*
  2. * @(#)UnsupportedEncodingException.java 1.10 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. * The Character Encoding is not supported
  10. *
  11. * @author Asmus Freytag
  12. * @version 1.10, 11/29/01
  13. * @since JDK1.1
  14. */
  15. public class UnsupportedEncodingException
  16. extends IOException
  17. {
  18. /**
  19. * no detailed message
  20. */
  21. public UnsupportedEncodingException() {
  22. super();
  23. }
  24. /**
  25. * detailed message
  26. * @param s - detailed message
  27. */
  28. public UnsupportedEncodingException(String s) {
  29. super(s);
  30. }
  31. }