Small fixes

This commit is contained in:
crschnick
2024-07-08 09:14:42 +00:00
parent 935e28190c
commit 70ba263ec4
2 changed files with 2 additions and 1 deletions

View File

@@ -60,7 +60,7 @@ public interface NetworkTunnelStore extends DataStore {
default NetworkTunnelSession sessionChain(int local, int remotePort) throws Exception {
if (!isLocallyTunneable()) {
throw new IllegalStateException();
throw new IllegalStateException("Unable to create tunnel chain as one intermediate system does not support tunneling");
}
var running = new AtomicBoolean();