Open Kilda Java Documentation
SwitchNotFoundException.java
Go to the documentation of this file.
1 package org.openkilda.floodlight.switchmanager;
2 
3 import org.projectfloodlight.openflow.types.DatapathId;
4 
6  public SwitchNotFoundException(DatapathId dpId) {
7  super(dpId, String.format("Switch \"%s\" is not connected", dpId));
8  }
9 }