LOG.error("Encoding not supported: " + charset);
try {
return doFormUrlEncode(pairs, DEFAULT_CHARSET);
} catch (UnsupportedEncodingException fatal) {
// Should never happen. ISO-8859-1 must be supported on all JVMs
throw new HttpClientError("Encoding not supported: " +
DEFAULT_CHARSET);
}
}
}