FileDocCategorySizeDatePackage
MalformedInputException.javaAPI DocJava SE 6 API759Tue Jun 10 00:25:42 BST 2008java.nio.charset

MalformedInputException

public class MalformedInputException extends CharacterCodingException
Checked exception thrown when an input byte sequence is not legal for given charset, or an input character sequence is not a legal sixteen-bit Unicode sequence.
since
1.4

Fields Summary
private int
inputLength
Constructors Summary
public MalformedInputException(int inputLength)

	this.inputLength = inputLength;
    
Methods Summary
public intgetInputLength()

	return inputLength;
    
public java.lang.StringgetMessage()

	return "Input length = " + inputLength;