You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2014/03/18 21:55:03 UTC

svn commit: r1579037 - /jmeter/trunk/src/core/org/apache/jmeter/gui/action/Load.java

Author: pmouawad
Date: Tue Mar 18 20:55:02 2014
New Revision: 1579037

URL: http://svn.apache.org/r1579037
Log:
Clarify error message

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/gui/action/Load.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/action/Load.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/action/Load.java?rev=1579037&r1=1579036&r2=1579037&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/action/Load.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/action/Load.java Tue Mar 18 20:55:02 2014
@@ -171,7 +171,7 @@ public class Load implements Command {
     public static boolean insertLoadedTree(final int id, final HashTree tree, final boolean merging) throws IllegalUserActionException {
         // convertTree(tree);
         if (tree == null) {
-            throw new IllegalUserActionException("Empty TestPlan - see log file");
+            throw new IllegalUserActionException("Empty TestPlan or error reading test plan - see log file");
         }
         final boolean isTestPlan = tree.getArray()[0] instanceof TestPlan;