FileDocCategorySizeDatePackage
CoderMalfunctionError.javaAPI DocJava SE 5 API779Fri Aug 26 14:57:10 BST 2005java.nio.charset

CoderMalfunctionError

public class CoderMalfunctionError extends Error
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.5, 03/12/19
since
1.4

Fields Summary
Constructors Summary
public CoderMalfunctionError(Exception cause)
Initializes an instance of this class.

param
cause The unexpected exception that was thrown

	super(cause);
    
Methods Summary