diff --git a/Mage.Server/src/main/java/mage/server/CustomSetLoader.java b/Mage.Server/src/main/java/mage/server/CustomSetLoader.java index acf2a4efbe..dfff243b43 100644 --- a/Mage.Server/src/main/java/mage/server/CustomSetLoader.java +++ b/Mage.Server/src/main/java/mage/server/CustomSetLoader.java @@ -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); }