public class

IllegalFormatCodePointException

extends IllegalFormatException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ java.lang.IllegalArgumentException
           ↳ java.util.IllegalFormatException
             ↳ java.util.IllegalFormatCodePointException

Class Overview

Unchecked exception thrown when a character with an invalid Unicode code point as defined by 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.

Summary

Public Constructors
IllegalFormatCodePointException(int c)
Constructs an instance of this class with the specified illegal code point as defined by isValidCodePoint(int).
Public Methods
int getCodePoint()
Returns the illegal code point as defined by isValidCodePoint(int).
String getMessage()
Returns the detail message string of this throwable.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public IllegalFormatCodePointException (int c)

Constructs an instance of this class with the specified illegal code point as defined by isValidCodePoint(int).

Parameters
c The illegal Unicode code point

Public Methods

public int getCodePoint ()

Returns the illegal code point as defined by isValidCodePoint(int).

Returns
  • The illegal Unicode code point

public String getMessage ()

Returns the detail message string of this throwable.

Returns
  • the detail message string of this Throwable instance (which may be null).