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 2020/11/16 10:47:09 UTC

[jmeter] 01/02: Add missing javadoc throws statements

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 e3f729242817abe4deb7c8a6abc8c3f699ed8932
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Mon Nov 16 11:42:58 2020 +0100

    Add missing javadoc throws statements
---
 src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java b/src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java
index 7b88858..a741377 100644
--- a/src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java
+++ b/src/core/src/main/java/org/apache/jmeter/gui/GUIFactory.java
@@ -157,6 +157,10 @@ public final class GUIFactory {
      * @throws IllegalAccessException
      *             if access rights do not permit an instance of the GUI class
      *             to be created
+     * @throws NoSuchMethodException
+     *             when no constructor can be found on the given {@code guiClass}
+     * @throws InvocationTargetException
+     *             when the called constructor throws an exception
      */
     public static void registerGUI(String key, Class<?> guiClass, Class<?> testClass) throws InstantiationException,
             IllegalAccessException, NoSuchMethodException, InvocationTargetException {