Author: pmouawad
Date: Tue Sep 4 11:42:33 2012
New Revision: 1380574
URL: http://svn.apache.org/viewvc?rev=1380574&view=rev
Log:
Cascade exceptions
Modified:
jmeter/trunk/src/functions/org/apache/jmeter/functions/BeanShell.java
Modified: jmeter/trunk/src/functions/org/apache/jmeter/functions/BeanShell.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/functions/org/apache/jmeter/functions/BeanShell.java?rev=1380574&r1=1380573&r2=1380574&view=diff
==============================================================================
--- jmeter/trunk/src/functions/org/apache/jmeter/functions/BeanShell.java (original)
+++ jmeter/trunk/src/functions/org/apache/jmeter/functions/BeanShell.java Tue Sep 4 11:42:33
2012
@@ -136,7 +136,7 @@ public class BeanShell extends AbstractF
try {
bshInterpreter = new BeanShellInterpreter(JMeterUtils.getProperty(INIT_FILE),
log);
} catch (ClassNotFoundException e) {
- throw new InvalidVariableException("BeanShell not found");
+ throw new InvalidVariableException("BeanShell not found", e);
}
}
|