All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jnngl.server.exception.TooSmallPacketException Maven / Gradle / Ivy

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+")");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy