DuplicateFormatFlagsException |
The unchecked exception will be thrown out if there are duplicate flags given
out in the format specifier. |
FormatFlagsConversionMismatchException |
The unchecked exception will be thrown out if a conversion and flags are
incompatible. |
IllegalFormatCodePointException |
The unchecked exception will be thrown out if an invalid Unicode code point,
which is Character.isValidCodePoint(int), is passed as a parameter to
Formatter. |
IllegalFormatConversionException |
The unchecked exception will be thrown out when the parameter is incompatible
with the corresponding format specifier. |
IllegalFormatFlagsException |
The unchecked exception will be thrown out if the combination of the format
flags is illegal. |
IllegalFormatPrecisionException |
The unchecked exception will be thrown out when the precision is a negative
other than -1, or the conversion does not support a precision or other cases
when the precision is not supported. |
IllegalFormatWidthException |
The unchecked exception will be thrown out when the width is a negative other
than -1, or the conversion does not support a width or other cases when the
width is not supported. |
MissingFormatArgumentException |
The unchecked exception will be thrown out if there no corresponding argument
with the specified conversion or an argument index that refers to a
missing argument. |
MissingFormatWidthException |
The unchecked exception will be thrown out if the format width is missing but
is required. |
UnknownFormatConversionException |
The unchecked exception will be thrown out if the format conversion is
unknown. |
UnknownFormatFlagsException |
The unchecked exception will be thrown out if there is an unknown flag. |