public class java.util
IllegalFormatCodePointException


Hide details Login
Java SE 6
  
Extends: Throwable > Exception > RuntimeException > IllegalArgumentException > IllegalFormatException

Unchecked exception thrown when a character with an invalid Unicode code point as defined by Character#isValidCodePoint is passed to the Formatter.

Unless otherwise specified, passing a null argument to any method or constructor in this class will cause a NullPointerException to be thrown.
version1.4, 12/01/05
since1.5


Constructors
public IllegalFormatCodePointException(int c)
Constructs an instance of this class with the specified illegal code point as defined by Character#isValidCodePoint.
cThe illegal Unicode code point

Properties
public int getCodePoint()
Returns the illegal code point as defined by Character#isValidCodePoint.
returnThe illegal Unicode code point
public String getMessage()