Hello,
I am using Netbeans IDE 15 and JDK14. When I changed com.convertapi.client from 2.2 to 2.9, I started getting the error "java.lang.NoClassDefFoundError: Could not initialize class com.convertapi.client.Http" and the connection was not opening.
As a solution, I added the below jar in maven.
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>1.3.70</version>
</dependency>
When I added this jar it worked fine.