CommitInfo forward compatibility
[mdsal.git] / common / mdsal-common-api / src / main / java / org / opendaylight / mdsal / common / api / DataStoreUnavailableException.java
index 748d89aeaec09afc1759bb1f478d4144691d1769..44d57575de51fe32670385abafa5d7b89c21a3c1 100644 (file)
@@ -7,17 +7,17 @@
  */
 package org.opendaylight.mdsal.common.api;
 
+import java.io.Serial;
+
 /**
- * This exception occurs if the datastore is temporarily unavailable.
- * A retry of the transaction may succeed after a period of time
+ * This exception occurs if the datastore is temporarily unavailable. A retry of the transaction may succeed after
+ * a period of time.
  */
-
 public class DataStoreUnavailableException extends Exception {
+    @Serial
     private static final long serialVersionUID = 1L;
 
-    public DataStoreUnavailableException(String message, Throwable cause) {
+    public DataStoreUnavailableException(final String message, final Throwable cause) {
         super(message, cause);
     }
-
-
 }