Fix checkstyle warnings
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / md / core / ErrorHandler.java
index 282dfc603cbe662cfda66f0faf275a35ef3e332c..6f930d7cc2a2b47f66e8985eed0964f51446cd07 100644 (file)
@@ -9,16 +9,13 @@ package org.opendaylight.openflowplugin.api.openflow.md.core;
 
 import org.opendaylight.openflowplugin.api.openflow.md.core.session.SessionContext;
 
-/**
- * @author mirehak
- *
- */
 public interface ErrorHandler {
 
     /**
-     * @param e cause
+     * Exception handler.
+     * @param throwable cause
      * @param sessionContext of source
      */
-    void handleException(Throwable e, SessionContext sessionContext);
+    void handleException(Throwable throwable, SessionContext sessionContext);
 
 }