1 /*2 * @(#)CoderMalfunctionError.java 1.5 03/12/193 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package java.nio.charset;9 10 11 /**12 * Error thrown when the {@link CharsetDecoder#decodeLoop decodeLoop} method of13 * a {@link CharsetDecoder}, or the {@link CharsetEncoder#encodeLoop14 * encodeLoop} method of a {@link CharsetEncoder}, throws an unexpected15 * exception.16 *17 * @version 1.5, 03/12/1918 * @since 1.419 */20 21 public class CoderMalfunctionError22 extends Error 23 {24 25 /**26 * Initializes an instance of this class.27 *28 * @param cause29 * The unexpected exception that was thrown30 */31 public CoderMalfunctionError(Exception cause) {32 super(cause);33 }34 35 }36