Beep exception about message number
Serge Adda <[email protected]> Mon, 2 Sep 2002 14:57:40 +0200
| Newsgroups | gmane.network.beep.beepcore.java.general |
|---|---|
| Message-ID | <[email protected]> |
I am receiving this exception from Channel.postFrame, line 756:
org.beepcore.beep.core.Session.terminate: Incorrect message number: was 6;
expecting 5.
Is it a bug?
code:
if (frame.getMsgno() != mstatus.getMsgno()) {
throw new BEEPException("Incorrect message number: was "
+ frame.getMsgno()
+ "; expecting "
+ mstatus.getMsgno());
}
Serge