Make Netty-3 dependency optional
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / exceptions / TimeoutException.java
index 472cd387345a5ffd61747af83629dcb86a8100f3..a3bb4b30b4bca268eba5f36c85e732b0df828c63 100644 (file)
@@ -9,7 +9,9 @@
 package org.opendaylight.controller.cluster.datastore.exceptions;
 
 public class TimeoutException extends RuntimeException {
-    public TimeoutException(String message, Exception e){
-        super(message, e);
+    private static final long serialVersionUID = 1L;
+
+    public TimeoutException(String message, Exception cause) {
+        super(message, cause);
     }
 }