As noted in comments, you've got a warning and an error.
Warning:
OpenJDK 64-Bit Server VM warning: Options -Xverify:none and -noverify were deprecated in JDK 13 and will likely be removed in a future release
This can be addressed by disabling the application's "Fast startup" checkbox. See this answer for details.
Error:
Error: Could not find or load main class com.cgs.stestweb.SpringBootBasicsApplication
Caused by: java.lang.ClassNotFoundException: com.cgs.stestweb.SpringBootBasicsApplication
To address this, you will need to correct your configuration.