Package Summary  Overview Summary

class:IllegalFormatCodePointException [NONE]

All Implemented Interfaces:
Serializable

public class IllegalFormatCodePointException
extends IllegalFormatException
Unchecked exception thrown when a character with an invalid Unicode code point as defined by Character.isValidCodePoint(int) 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.

Since:
1.5
See Also:
Serialized Form

constructor:IllegalFormatCodePointException(int) [NONE]

method:getCodePoint() [NONE]

  • getCodePoint

    public int getCodePoint()
    Returns the illegal code point as defined by Character.isValidCodePoint(int).
    Returns:
    The illegal Unicode code point
  • method:getMessage() [NONE]

    getMessage

    public String getMessage()
    Description copied from class: Throwable
    Returns the detail message string of this throwable.
    Overrides:
    getMessage in class Throwable
    Returns:
    the detail message string of this Throwable instance (which may be null).

    © 2020 Oracle Corporation and/or its affiliates