This is an automated email from the ASF dual-hosted git repository.
fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
commit 25d050f5d404f89a5621484263cc68d9152e122a
Author: Felix Schumacher <felix.schumacher@internetallee.de>
AuthorDate: Thu Oct 31 22:06:27 2019 +0100
Add missing throws javadoc for TimeoutException
---
src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java b/src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java
index bac14d1..b737fa9 100644
--- a/src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java
+++ b/src/jorphan/src/main/java/org/apache/jorphan/exec/SystemCommand.java
@@ -128,6 +128,7 @@ public class SystemCommand {
* @return return code
* @throws InterruptedException when execution was interrupted
* @throws IOException when I/O error occurs while execution
+ * @throws TimeoutException when timeout is reached while execution
*/
public int run(List<String> arguments) throws InterruptedException, IOException,
TimeoutException {
return run(arguments, stdin, stdout, stderr);
|