Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sttp simple could offer a better error message on jdk < 11 #2249

Open
lbialy opened this issue Aug 6, 2024 · 1 comment
Open

sttp simple could offer a better error message on jdk < 11 #2249

lbialy opened this issue Aug 6, 2024 · 1 comment

Comments

@lbialy
Copy link

lbialy commented Aug 6, 2024

Related to toolkit issue: scala/toolkit#39

This is basically an improvement proposal for ClassNotFoundException thrown when built-in java http client class is missing on jdks below 11.

@adamw
Copy link
Member

adamw commented Dec 18, 2024

Hm the exception comes from the class loader which loads sttp's classes (at least as far as I can reproduce), so I don't think we can do much about it:

Exception in thread "main" java.lang.UnsupportedClassVersionError: sttp/client4/quick$ has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
	at java.lang.ClassLoader.defineClass1(Native Method)
	at java.lang.ClassLoader.defineClass(ClassLoader.java:757)
	at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
	at java.net.URLClassLoader.defineClass(URLClassLoader.java:473)
	at java.net.URLClassLoader.access$100(URLClassLoader.java:74)
	at java.net.URLClassLoader$1.run(URLClassLoader.java:369)
	at java.net.URLClassLoader$1.run(URLClassLoader.java:363)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(URLClassLoader.java:362)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:419)
	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:352)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:352)
	at x$package$.test(x.scala:6)
	at test.main(x.scala:5)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants