You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2016/12/27 15:24:05 UTC

svn commit: r1776149 - /jmeter/trunk/src/core/org/apache/jmeter/engine/DistributedRunner.java

Author: fschumacher
Date: Tue Dec 27 15:24:05 2016
New Revision: 1776149

URL: http://svn.apache.org/viewvc?rev=1776149&view=rev
Log:
Javadoc: add description for possible exceptions.

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/engine/DistributedRunner.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/engine/DistributedRunner.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/engine/DistributedRunner.java?rev=1776149&r1=1776148&r2=1776149&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/engine/DistributedRunner.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/engine/DistributedRunner.java Tue Dec 27 15:24:05 2016
@@ -229,9 +229,9 @@ public class DistributedRunner {
      *
      * @param address address for engine
      * @return engine instance
-     * @throws RemoteException
-     * @throws NotBoundException
-     * @throws MalformedURLException
+     * @throws RemoteException if registry can't be contacted
+     * @throws NotBoundException when name for address can't be found
+     * @throws MalformedURLException when address can't be converted to valid URL
      */
     protected JMeterEngine createEngine(String address) throws RemoteException, NotBoundException, MalformedURLException {
         return new ClientJMeterEngine(address);