From 0afa61ac397729b261343f91aa3a3bccb7c6ae5d Mon Sep 17 00:00:00 2001 From: aboyko Date: Thu, 23 May 2024 00:42:25 -0400 Subject: [PATCH] Compile with multiple LSP4E versions --- .../src/org/springframework/tooling/boot/ls/Startup.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/Startup.java b/eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/Startup.java index d20e4fe7c..75fc5afe1 100644 --- a/eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/Startup.java +++ b/eclipse-language-servers/org.springframework.tooling.boot.ls/src/org/springframework/tooling/boot/ls/Startup.java @@ -10,7 +10,6 @@ *******************************************************************************/ package org.springframework.tooling.boot.ls; -import java.io.IOException; import java.util.List; import java.util.Set; @@ -46,7 +45,7 @@ public class Startup implements IStartup { LanguageServiceAccessor.startLanguageServer(serverDefinition); BootLanguageServerPlugin.getDefault().getLog().info("Started Boot LS process"); started = true; - } catch (IOException e1) { + } catch (Throwable e1) { BootLanguageServerPlugin.getDefault().getLog().error("Failed to launch Boot Language Server", e1); }