14 lines
455 B
Java
14 lines
455 B
Java
package net.minecraft.network;
|
|
|
|
import io.netty.handler.codec.DecoderException;
|
|
import net.minecraft.network.codec.IdDispatchCodec;
|
|
|
|
public class SkipPacketDecoderException extends DecoderException implements SkipPacketException, IdDispatchCodec.DontDecorateException {
|
|
public SkipPacketDecoderException(String p_393826_) {
|
|
super(p_393826_);
|
|
}
|
|
|
|
public SkipPacketDecoderException(Throwable p_392147_) {
|
|
super(p_392147_);
|
|
}
|
|
} |