java.lang.Object | ||||||
↳ | java.lang.Throwable | |||||
↳ | java.lang.Exception | |||||
↳ | java.lang.RuntimeException | |||||
↳ | java.lang.IllegalArgumentException | |||||
↳ | java.util.IllegalFormatException | |||||
↳ | java.util.IllegalFormatConversionException |
An IllegalFormatConversionException
will be thrown when the parameter
is incompatible with the corresponding format specifier.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new
IllegalFormatConversionException with the class
of the mismatched conversion and corresponding parameter. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the class of the mismatched parameter.
| |||||||||||
Returns the incompatible conversion.
| |||||||||||
Returns the detail message which was provided when this
Throwable was created. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Throwable
| |||||||||||
From class
java.lang.Object
|
Constructs a new IllegalFormatConversionException
with the class
of the mismatched conversion and corresponding parameter.
c | the class of the mismatched conversion. |
---|---|
arg | the corresponding parameter. |
Returns the class of the mismatched parameter.
Returns the incompatible conversion.
Returns the detail message which was provided when this
Throwable
was created. Returns null
if no message was
provided at creation time.