Remove unused code from He design
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / md / core / ErrorHandler.java
index 6f930d7cc2a2b47f66e8985eed0964f51446cd07..d5480b2c04b06424e930dcf949e3e4a23a2e453f 100644 (file)
@@ -7,15 +7,12 @@
  */
 package org.opendaylight.openflowplugin.api.openflow.md.core;
 
-import org.opendaylight.openflowplugin.api.openflow.md.core.session.SessionContext;
-
 public interface ErrorHandler {
 
     /**
      * Exception handler.
      * @param throwable cause
-     * @param sessionContext of source
      */
-    void handleException(Throwable throwable, SessionContext sessionContext);
+    void handleException(Throwable throwable);
 
 }