java.util
public class: IllegalFormatCodePointException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
java.util.IllegalFormatException
java.util.IllegalFormatCodePointException
All Implemented Interfaces:
Serializable
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.
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from java.util.IllegalFormatCodePointException Detail: |
public int getCodePoint() {
return c;
}
|
public String getMessage() {
return String.format("Code point = %#x", c);
}
|