if (nodes.isEmpty()) {
throw new NoNodeException("no node configured");
}
+ FcpException fcpException = null;
for (FcpClient fcpClient : nodeClients.values()) {
try {
SSKKeypair sskKeypair = fcpClient.generateKeyPair();
return new String[] { sskKeypair.getInsertURI(), sskKeypair.getRequestURI() };
} catch (FcpException fcpe1) {
- /* ignore, we’ll throw later on if needs be. */
+ fcpException = fcpe1;
}
}
- throw new JSiteException("Could not get SSK key pair from any node.");
+ throw new JSiteException("Could not get SSK key pair from any node.", fcpException);
}
//