WIFI-412: fixed typo in the error message

This commit is contained in:
Dmitry Toptygin
2020-09-10 16:45:00 -04:00
parent faa0832829
commit a27fdcf666

View File

@@ -106,7 +106,7 @@ public class PortForwarderController {
ForwarderSession forwarderSession = getForwarder().getForwardingSession(localSessionId);
if(forwarderSession==null){
throw new IllegalStateException("Could not find session" + localSessionId);
throw new IllegalStateException("Could not find session " + localSessionId);
}
getForwarder().stopForwarderSession(localSessionId);