CloneFailedException: remove "@since upcoming" from constructors javadoc, because these constructors were added in the same version as the class itself (3.0)

This commit is contained in:
pascalschumacher 2018-02-11 14:03:33 +01:00
parent 6684a76317
commit 7eb47fd85e
1 changed files with 0 additions and 3 deletions

View File

@ -33,7 +33,6 @@ public class CloneFailedException extends RuntimeException {
* Constructs a CloneFailedException. * Constructs a CloneFailedException.
* *
* @param message description of the exception * @param message description of the exception
* @since upcoming
*/ */
public CloneFailedException(final String message) { public CloneFailedException(final String message) {
super(message); super(message);
@ -43,7 +42,6 @@ public class CloneFailedException extends RuntimeException {
* Constructs a CloneFailedException. * Constructs a CloneFailedException.
* *
* @param cause cause of the exception * @param cause cause of the exception
* @since upcoming
*/ */
public CloneFailedException(final Throwable cause) { public CloneFailedException(final Throwable cause) {
super(cause); super(cause);
@ -54,7 +52,6 @@ public class CloneFailedException extends RuntimeException {
* *
* @param message description of the exception * @param message description of the exception
* @param cause cause of the exception * @param cause cause of the exception
* @since upcoming
*/ */
public CloneFailedException(final String message, final Throwable cause) { public CloneFailedException(final String message, final Throwable cause) {
super(message, cause); super(message, cause);