📄 unsupportedencodingexception.java
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -