com.jnngl.server.exception.TooSmallPacketException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of totalcomputers Show documentation
Show all versions of totalcomputers Show documentation
Computers in vanilla Minecraft | TotalOS SDK
The newest version!
package com.jnngl.server.exception;
public class TooSmallPacketException extends Exception {
public TooSmallPacketException(int readableBytes, int expectedMinSize) {
super("Packet was too small ("+readableBytes+" < "+expectedMinSize+")");
}
}