Returns the message string of the IllegalFormatConversionException.
return
the message string of the IllegalFormatConversionException.
StringBuilder buffer = new StringBuilder();
buffer.append(c);
buffer.append(" is incompatible with ");
buffer.append(arg.getName());
return buffer.toString();