IllegalFormatCodePointException
open class IllegalFormatCodePointException : IllegalFormatException
| kotlin.Any | ||||||
| ↳ | kotlin.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 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.
Summary
| Public constructors | |
|---|---|
|
Constructs an instance of this class with the specified illegal code point as defined by |
|
| Public methods | |
|---|---|
| open Int |
Returns the illegal code point as defined by |
| Properties | |
|---|---|
| open String? |
Returns the detail message string of this throwable. |
Public constructors
IllegalFormatCodePointException
IllegalFormatCodePointException(c: Int)
Constructs an instance of this class with the specified illegal code point as defined by Character.isValidCodePoint.
| Parameters | |
|---|---|
c |
Int: The illegal Unicode code point |
Public methods
getCodePoint
open fun getCodePoint(): Int
Returns the illegal code point as defined by Character.isValidCodePoint.
| Return | |
|---|---|
Int |
The illegal Unicode code point |
Properties
message
open val message: String?
Returns the detail message string of this throwable.
| Return | |
|---|---|
String? |
the detail message string of this Throwable instance (which may be null). |