Add new cds-access-api proxies
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / FutureVersionException.java
index 4cd807ee097bce537c22fd163e1711d89876ebfb..f0ceaa4890b61dbc38493075be9cbf7e3fc74213 100644 (file)
@@ -7,17 +7,15 @@
  */
 package org.opendaylight.controller.cluster.access;
 
-import java.io.Serial;
-
 /**
  * Exception thrown from {@link ABIVersion#valueOf(short)} when the specified version is too new to be supported
  * by the codebase.
  */
 public final class FutureVersionException extends AbstractVersionException {
-    @Serial
+    @java.io.Serial
     private static final long serialVersionUID = 1L;
 
-    FutureVersionException(final short version, ABIVersion closest) {
+    FutureVersionException(final short version, final ABIVersion closest) {
         super("Version " + Short.toUnsignedInt(version) + " is too new", version, closest);
     }
 }