X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fcds-access-client%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fclient%2FInversibleLockException.java;h=82b6568459a34cdedaf24f7ddb91d32cba61b348;hb=HEAD;hp=a2f2ffd7e87eb15b8bb9bbcf45460346eea7610a;hpb=3859df9beca8f13f1ff2b2744ed3470a1715bec3;p=controller.git diff --git a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InversibleLockException.java b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InversibleLockException.java index a2f2ffd7e8..82b6568459 100644 --- a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InversibleLockException.java +++ b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InversibleLockException.java @@ -9,17 +9,15 @@ package org.opendaylight.controller.cluster.access.client; import static java.util.Objects.requireNonNull; -import com.google.common.annotations.Beta; +import java.io.Serial; import java.util.concurrent.CountDownLatch; /** * Exception thrown from {@link InversibleLock#optimisticRead()} and can be used to wait for the racing write * to complete using {@link #awaitResolution()}. - * - * @author Robert Varga */ -@Beta public final class InversibleLockException extends RuntimeException { + @Serial private static final long serialVersionUID = 1L; private final transient CountDownLatch latch;