public class

IllegalFormatCodePointException

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

Class Overview

An IllegalFormatCodePointException will be thrown if an invalid Unicode code point (defined by isValidCodePoint(int)) is passed as a parameter to a Formatter.

See Also

Summary

Public Constructors
IllegalFormatCodePointException(int c)
Constructs a new IllegalFormatCodePointException which is specified by the invalid Unicode code point.
Public Methods
int getCodePoint()
Returns the invalid Unicode code point.
String getMessage()
Returns the message string of the IllegalFormatCodePointException.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public IllegalFormatCodePointException (int c)

Constructs a new IllegalFormatCodePointException which is specified by the invalid Unicode code point.

Parameters
c the invalid Unicode code point.

Public Methods

public int getCodePoint ()

Returns the invalid Unicode code point.

Returns
  • the invalid Unicode code point.

public String getMessage ()

Returns the message string of the IllegalFormatCodePointException.

Returns
  • the message string of the IllegalFormatCodePointException.