mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 13:41:21 +00:00
GUACAMOLE-1: Ensure any LinkageErrors thrown by Class.forName() for an extension do not result in the entire startup process aborting.
This commit is contained in:
@@ -230,6 +230,9 @@ public class Extension {
|
||||
catch (ClassNotFoundException e) {
|
||||
throw new GuacamoleException("Authentication provider class not found.", e);
|
||||
}
|
||||
catch (LinkageError e) {
|
||||
throw new GuacamoleException("Authentication provider class cannot be loaded (wrong version of API?).", e);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user