diff --git a/src/main/java/teetime/framework/Analysis.java b/src/main/java/teetime/framework/Analysis.java index ffb486638554a06248c22b7a2a4c6745b941e10e..42484554c5a287a58f3c53e819a4ab29b4038097 100644 --- a/src/main/java/teetime/framework/Analysis.java +++ b/src/main/java/teetime/framework/Analysis.java @@ -168,7 +168,7 @@ public final class Analysis implements UncaughtExceptionHandler { * * @return a collection of thread/throwable pairs * - * @deprecated As of release 1.1, replaced by {@link #execute()} + * @deprecated since 1.1, replaced by {@link #execute()} */ @Deprecated public Collection<Pair<Thread, Throwable>> start() { @@ -207,6 +207,9 @@ public final class Analysis implements UncaughtExceptionHandler { /** * This method will start the Analysis and all containing stages. * + * @throws AnalysisException + * if at least one exception in one thread has occurred within the analysis. The exception contains the pairs of thread and throwable + * * @since 1.1 */ public void execute() { @@ -226,7 +229,7 @@ public final class Analysis implements UncaughtExceptionHandler { /** * Retrieves the Configuration which was used to add and arrange all stages needed for the Analysis * - * @return Configuration used for the Analysis + * @return the configuration used for the Analysis */ public AnalysisConfiguration getConfiguration() { return this.configuration;