only:docs

This commit is contained in:
rusefillc 2024-03-23 08:38:39 -04:00
parent 328fabc9f6
commit 3919fab7b3
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ public class LinkManager implements Closeable {
public void assertCommunicationThread() {
if (Thread.currentThread() != communicationThread) {
IllegalStateException e = new IllegalStateException("Communication on wrong thread");
IllegalStateException e = new IllegalStateException("Communication on wrong thread. Use linkManager.execute or linkManager.submit");
e.printStackTrace();
log.error(e.getMessage(), e);
throw e;