Source Home >> Java Source 1.6.0 >> java.io.UnsupportedEncodingException V 0.09
  • 01/*
  • 02 * @(#)UnsupportedEncodingException.java 1.17 05/11/17
  • 03 *
  • 04 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
  • 05 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  • 06 */
  • 07package java.io;
  • 08
  • 09/**
  • 10 * The Character Encoding is not supported.
  • 11 *
  • 12 * @author Asmus Freytag
  • 13 * @version 1.17, 11/17/05
  • 14 * @since JDK1.1
  • 15 */
  • 16public class UnsupportedEncodingException
  • 17 extends IOException
  • 18{
  • 19 /**
  • 20 * Constructs an UnsupportedEncodingException without a detail message.
  • 21 */
  • 22 public UnsupportedEncodingException() {
  • 23 super();
  • 24 }
  • 25
  • 26 /**
  • 27 * Constructs an UnsupportedEncodingException with a detail message.
  • 28 * @param s Describes the reason for the exception.
  • 29 */
  • 30 public UnsupportedEncodingException(String s) {
  • 31 super(s);
  • 32 }
  • 33}

文件:UnsupportedEncodingException.java
包名:java.io
类名:UnsupportedEncodingException
继承:IOException
接口: