Places the string representation of extension value
into the StringBuffer object.
buffer.append(prefix).append("Certificate Issuer: "); //$NON-NLS-1$
if (issuer == null) {
try {
issuer = getIssuer();
} catch (IOException e) {
// incorrect extension value encoding
buffer.append("Unparseable (incorrect!) extension value:\n"); //$NON-NLS-1$
super.dumpValue(buffer);
}
}
buffer.append(issuer).append('\n");