fix crash

This commit is contained in:
Babbaj
2019-07-23 02:56:24 -04:00
parent 821e73c1d3
commit 7000b6cda2

View File

@ -32,7 +32,7 @@ public enum SchematicaHelper {
try {
Class.forName(Schematica.class.getName());
return true;
} catch (ClassNotFoundException ex) {
} catch (ClassNotFoundException | NoClassDefFoundError ex) {
return false;
}
}