Constructs a new {@code FormatFlagsConversionMismatchException} with the flags and conversion specified.paramf the flags.paramc the conversion. if (null == f) { throw new NullPointerException(); } this.f = f; this.c = c;
if (null == f) { throw new NullPointerException(); } this.f = f; this.c = c;
Returns the incompatible conversion.returnthe incompatible conversion. return c;
return c;
Returns the incompatible format flag.returnthe incompatible format flag. return f;
return f;
Returns the message string of the {@code FormatFlagsConversionMismatchException}.returnthe message string of the {@code FormatFlagsConversionMismatchException}. StringBuilder buffer = new StringBuilder(); buffer.append("Mismatched Convertor ="); buffer.append(c); buffer.append(", Flags= "); buffer.append(f); return buffer.toString();
StringBuilder buffer = new StringBuilder(); buffer.append("Mismatched Convertor ="); buffer.append(c); buffer.append(", Flags= "); buffer.append(f); return buffer.toString();