codermalfunctionerror.java
来自「JAVA基本类源代码,大家可以学习学习!」· Java 代码 · 共 36 行
JAVA
36 行
/* * @(#)CoderMalfunctionError.java 1.4 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.nio.charset;/** * Error thrown when the {@link CharsetDecoder#decodeLoop decodeLoop} method of * a {@link CharsetDecoder}, or the {@link CharsetEncoder#encodeLoop * encodeLoop} method of a {@link CharsetEncoder}, throws an unexpected * exception. * * @version 1.4, 03/01/23 * @since 1.4 */public class CoderMalfunctionError extends Error{ /** * Initializes an instance of this class. * * @param cause * The unexpected exception that was thrown */ public CoderMalfunctionError(Exception cause) { super(cause); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?