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 |
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.
Public constructors | |
---|---|
IllegalFormatCodePointException(int c)
Constructs an instance of this class with the specified illegal code
point as defined by |
Public methods | |
---|---|
int
|
getCodePoint()
Returns the illegal code point as defined by |
String
|
getMessage()
Returns the detail message string of this throwable. |
Inherited methods | |
---|---|
From
class
java.lang.Throwable
| |
From
class
java.lang.Object
|
IllegalFormatCodePointException (int c)
Constructs an instance of this class with the specified illegal code
point as defined by isValidCodePoint(int)
.
Parameters | |
---|---|
c |
int :
The illegal Unicode code point
|
int getCodePoint ()
Returns the illegal code point as defined by isValidCodePoint(int)
.
Returns | |
---|---|
int |
The illegal Unicode code point |
String getMessage ()
Returns the detail message string of this throwable.
Returns | |
---|---|
String |
the detail message string of this Throwable instance
(which may be null ).
|