Open Kilda Java Documentation
OFInstallException.java
Go to the documentation of this file.
1 package org.openkilda.floodlight.switchmanager;
2 
3 import org.projectfloodlight.openflow.protocol.OFMessage;
4 import org.projectfloodlight.openflow.types.DatapathId;
5 
7  OFMessage ofMessage;
8 
9  public OFInstallException(DatapathId dpId, OFMessage ofMessage) {
10  super(dpId, String.format("Error during install OFRule into switch \"%s\"", dpId));
11  this.ofMessage = ofMessage;
12  }
13 
14  public OFMessage getOfMessage() {
15  return ofMessage;
16  }
17 }
OFInstallException(DatapathId dpId, OFMessage ofMessage)