Netty WIP

Implementing ByteBuf backed In/OutPacket first in a separate branch
This commit is contained in:
P0nk
2021-06-15 22:12:23 +02:00
parent 4dc0935391
commit 23bad12f8c
14 changed files with 301 additions and 66 deletions

View File

@@ -0,0 +1,14 @@
package net.netty;
public class InvalidPacketHeaderException extends RuntimeException {
private final int header;
public InvalidPacketHeaderException(String message, int header) {
super(message);
this.header = header;
}
public int getHeader() {
return header;
}
}