Skip to content

Commit

Permalink
Add javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlschuetter committed Aug 7, 2023
1 parent 79da330 commit d1e1a79
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,28 @@
public final class TestAbortedNotAnIssueException extends TestAbortedException {
private static final long serialVersionUID = 1L;

/**
* Creates a new {@link TestAbortedNotAnIssueException}.
*/
public TestAbortedNotAnIssueException() {
super();
}

/**
* Creates a new {@link TestAbortedNotAnIssueException}.
*
* @param message The message.
* @param cause The cause.
*/
public TestAbortedNotAnIssueException(String message, Throwable cause) {
super(message, cause);
}

/**
* Creates a new {@link TestAbortedNotAnIssueException}.
*
* @param message The message.
*/
public TestAbortedNotAnIssueException(String message) {
super(message);
}
Expand Down

0 comments on commit d1e1a79

Please sign in to comment.