unsupportedencodingexception.java

来自「已经移植好的java虚拟机」· Java 代码 · 共 37 行

JAVA
37
字号
/* * Copyright 1996-2002 Sun Microsystems, Inc. All Rights Reserved. *  * This software is the proprietary information of Sun Microsystems, Inc.   * Use is subject to license terms. *  */package java.io;/** * The Character Encoding is not supported. * * @author  Asmus Freytag * @version 1.12, 12/04/99 (CLDC 1.0, Spring 2000) * @since   JDK1.1, CLDC 1.0 */public class UnsupportedEncodingException    extends IOException{    /**     * Constructs an UnsupportedEncodingException without a detail message.     */    public UnsupportedEncodingException() {        super();    }    /**     * Constructs an UnsupportedEncodingException with a detail message.     * @param s Describes the reason for the exception.     */    public UnsupportedEncodingException(String s) {        super(s);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?