Skip to content

Commit

Permalink
Updated Error Message
Browse files Browse the repository at this point in the history
  • Loading branch information
arjanoop committed May 31, 2024
1 parent a933abd commit 2b1d99b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ public class ExperimentExecutionResponse {
private String detailMessage;

public ExperimentExecutionResponse(String experimentId, String detailMessage) {
this.errorMessage = "Encountered a few exceptions while trying to start all needed tasks. " +
this.errorMessage = "Encountered errors while trying to start all needed tasks. " +
"Aborting the erroneous tasks and continuing the experiment.";
this.experimentId = experimentId;
this.detailMessage = detailMessage;
}

public ExperimentExecutionResponse(String detailMessage) {
this.errorMessage = "Encountered multiple exceptions while trying to start all needed tasks. " +
this.errorMessage = "Encountered multiple errors while trying to start all needed tasks. " +
"Aborting the experiment.";
this.detailMessage = detailMessage;
}
Expand Down

0 comments on commit 2b1d99b

Please sign in to comment.