minecraft-src/net/minecraft/network/SkipPacketException.java
2025-07-04 03:45:38 +03:00

7 lines
363 B
Java

package net.minecraft.network;
/**
* Used to signify that a packet encoding error is not fatal. If a packet fails to encode, but {@link net.minecraft.network.protocol.Packet#isSkippable} returns true, then this exception is thrown instead and {@link Connection} will log a message instead of closing the connection.
*/
public interface SkipPacketException {
}