Promote cds-access-api
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / NotLeaderException.java
index 0864cd0cf0c2fc7495fda9ed9aadf3314dbf780a..881953c01b5dce9b3f9f9232765ca0fa58f1127d 100644 (file)
@@ -8,17 +8,15 @@
 package org.opendaylight.controller.cluster.access.commands;
 
 import akka.actor.ActorRef;
-import com.google.common.annotations.Beta;
+import java.io.Serial;
 import org.opendaylight.controller.cluster.access.concepts.RequestException;
 
 /**
  * General error raised when the recipient of a Request is not the correct backend to talk to. This typically
  * means that the backend processing has moved and the frontend needs to run rediscovery and retry the request.
- *
- * @author Robert Varga
  */
-@Beta
 public final class NotLeaderException extends RequestException {
+    @Serial
     private static final long serialVersionUID = 1L;
 
     public NotLeaderException(final ActorRef me) {