Promote cds-access-api
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / concepts / RetiredGenerationException.java
index 7730318f578d31c02272abac6faad7ff193f4f99..cc0c6d0e16cdb48d7cdbaafe8c94df629e11f492 100644 (file)
@@ -7,16 +7,14 @@
  */
 package org.opendaylight.controller.cluster.access.concepts;
 
-import com.google.common.annotations.Beta;
+import java.io.Serial;
 
 /**
  * General error raised when the recipient of a {@link Request} determines that the request contains
  * a {@link ClientIdentifier} which corresponds to an outdated generation.
- *
- * @author Robert Varga
  */
-@Beta
 public final class RetiredGenerationException extends RequestException {
+    @Serial
     private static final long serialVersionUID = 1L;
 
     public RetiredGenerationException(final long originatingGeneration, final long newGeneration) {