mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-23 08:46:44 +01:00
Throw CNFE if we have an error processing plugin classes
By: md_5 <git@md-5.net>
This commit is contained in:
parent
6400a40fb2
commit
246fed61ca
1 changed files with 5 additions and 1 deletions
|
@ -100,7 +100,11 @@ final class PluginClassLoader extends URLClassLoader {
|
|||
throw new ClassNotFoundException(name, ex);
|
||||
}
|
||||
|
||||
classBytes = loader.server.getUnsafe().processClass(description, classBytes);
|
||||
try {
|
||||
classBytes = loader.server.getUnsafe().processClass(description, classBytes);
|
||||
} catch (Exception ex) {
|
||||
throw new ClassNotFoundException(name, ex);
|
||||
}
|
||||
|
||||
int dot = name.lastIndexOf('.');
|
||||
if (dot != -1) {
|
||||
|
|
Loading…
Add table
Reference in a new issue