You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
864 B

/*
* 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);
}
}