java.util
public class FormatFlagsConversionMismatchException extends IllegalFormatException
Since: 1.5
| Constructor Summary | |
|---|---|
| FormatFlagsConversionMismatchException(String f, char c)
Constructs a new FormatFlagsConversionMismatchException
which specifies that the flag, f, does
not match its appropriate conversion character, c.
| |
| Method Summary | |
|---|---|
| char | getConversion()
Returns the conversion character which doesn't
match the flag.
|
| String | getFlags()
Returns the mismatching flag.
|
FormatFlagsConversionMismatchException
which specifies that the flag, f, does
not match its appropriate conversion character, c.
Parameters: f the mismatching flag. c the conversion character which doesn't match its flag.
Throws: NullPointerException if f is null.
Returns: the conversion character.
Returns: the mismatching flag.