Minor error message fix.

This commit is contained in:
Lymia Aluysia 2016-09-25 12:36:59 -05:00
parent e606deded8
commit 2fec14f8fa
No known key found for this signature in database
GPG key ID: DB2E204C989251F7

View file

@ -62,7 +62,7 @@ public class CustomSetLoader {
} catch (InstantiationException | IllegalAccessException e) { } catch (InstantiationException | IllegalAccessException e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} catch (ClassNotFoundException e) { } catch (ClassNotFoundException e) {
throw new RuntimeException("Entry point file not found!", e); throw new RuntimeException("Entry point class not found!", e);
} catch (ClassCastException e) { } catch (ClassCastException e) {
throw new RuntimeException("Entry point not an instance of CustomSetPackage.", e); throw new RuntimeException("Entry point not an instance of CustomSetPackage.", e);
} }