com.jnngl.server.exception.PacketAlreadyExistsException 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
package com.jnngl.server.exception;
public class PacketAlreadyExistsException extends Exception {
public PacketAlreadyExistsException(int id) {
super("Packet "+id+" already exists");
}
}