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:
parent
6684a76317
commit
7eb47fd85e
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue