mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Minor error message fix.
This commit is contained in:
parent
e606deded8
commit
2fec14f8fa
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ public class CustomSetLoader {
|
|||
} catch (InstantiationException | IllegalAccessException e) {
|
||||
throw new RuntimeException(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) {
|
||||
throw new RuntimeException("Entry point not an instance of CustomSetPackage.", e);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue