Fix warnings/javadocs in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / exceptions / TimeoutException.java
index 5590877aa7907cd81fe96a193449a99505eb038e..a3bb4b30b4bca268eba5f36c85e732b0df828c63 100644 (file)
@@ -10,7 +10,8 @@ package org.opendaylight.controller.cluster.datastore.exceptions;
 
 public class TimeoutException extends RuntimeException {
     private static final long serialVersionUID = 1L;
-    public TimeoutException(String message, Exception e){
-        super(message, e);
+
+    public TimeoutException(String message, Exception cause) {
+        super(message, cause);
     }
 }