I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 3adbea9c authored by zzz's avatar zzz
Browse files

Better message on su3 certificate errors

parent 483f043d
No related branches found
No related tags found
No related merge requests found
......@@ -324,7 +324,7 @@ public class SU3File {
try {
_signerPubkey = ring.getKey(_signer, _contentType.getName(), _sigType);
} catch (GeneralSecurityException gse) {
IOException ioe = new IOException("keystore error");
IOException ioe = new IOException("Certificate error for " + _signer + ": " + gse);
ioe.initCause(gse);
throw ioe;
}
......@@ -338,7 +338,7 @@ public class SU3File {
try {
_signerPubkey = ring.getKey(_signer, _contentType.getName(), _sigType);
} catch (GeneralSecurityException gse) {
IOException ioe = new IOException("keystore error");
IOException ioe = new IOException("Certificate error for " + _signer + ": " + gse);
ioe.initCause(gse);
throw ioe;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment