From 2fec14f8fad48e0caf221aacc8f521bda3680548 Mon Sep 17 00:00:00 2001 From: Lymia Aluysia Date: Sun, 25 Sep 2016 12:36:59 -0500 Subject: [PATCH] Minor error message fix. --- Mage.Server/src/main/java/mage/server/CustomSetLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }