Compare commits

...

1 Commits

Author SHA1 Message Date
Ruben
e1007cce30 return error Message String
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 1m29s
2025-09-26 09:33:31 +02:00

View File

@@ -68,7 +68,7 @@ public class LanguageServerInterface {
return new LanguageServerTransferObject(tiResults, parsedSource, "", compiler.getGeneratedGenerics());
}catch (Exception e){
throw new RuntimeException("Compiler could not compile Files.");
throw new RuntimeException(e.getMessage());
}
}