GP-4330 facilitate specification of enabled TLS cipher suites for Ghidra

Server
This commit is contained in:
ghidra1 2024-02-15 17:48:27 -05:00
parent d27222d9b5
commit 2c65b1f796
3 changed files with 33 additions and 13 deletions

View file

@ -199,6 +199,9 @@ public class ClientUtil {
Msg.debug(ClientUtil.class, "Server not connected (" + operation + ")");
promptForReconnect(repository, operation, mustRetry, parent);
}
else if (exc instanceof RepositoryNotFoundException) {
Msg.showError(ClientUtil.class, parent, title, exc.getMessage());
}
else if (exc instanceof UserAccessException) {
Msg.showError(ClientUtil.class, parent, title,
"Access denied: " + repository + "\n" + exc.getMessage());