1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-16 18:31:53 +01:00

Make PaperSimplePluginClassLoader show class which is not found

This commit is contained in:
Shane Freeder 2024-05-18 21:17:54 +01:00
parent f14fe2e4f4
commit c889d48f8c

View file

@ -1155,7 +1155,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ String path = name.replace('.', '/').concat(".class");
+ JarEntry entry = this.jar.getJarEntry(path);
+ if (entry == null) {
+ throw new ClassNotFoundException();
+ throw new ClassNotFoundException(name);
+ }
+
+ // See URLClassLoader#defineClass(String, Resource)