/* * Copyright (c) 2001, 2007, Oracle and/or its affiliates. All rights reserved. * ORACLE 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. * * @since 1.4 */ public class CoderMalfunctionError extends Error { private static final long serialVersionUID = -1151412348057794301L; /** * Initializes an instance of this class. * * @param cause * The unexpected exception that was thrown */ public CoderMalfunctionError(Exception cause) { super(cause); } }