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

UnmappableCharacterException

public class UnmappableCharacterException extends CharacterCodingException
Checked exception thrown when an input character (or byte) sequence is valid but cannot be mapped to an output byte (or character) sequence.

since
1.4

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

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

	return inputLength;
    
public java.lang.StringgetMessage()

	return "Input length = " + inputLength;