26 lines
621 B
Java
26 lines
621 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* io.netty.handler.codec.DecoderException
|
|
*/
|
|
package net.minecraft.network;
|
|
|
|
import io.netty.handler.codec.DecoderException;
|
|
import net.minecraft.network.SkipPacketException;
|
|
import net.minecraft.network.codec.IdDispatchCodec;
|
|
|
|
public class SkipPacketDecoderException
|
|
extends DecoderException
|
|
implements IdDispatchCodec.DontDecorateException,
|
|
SkipPacketException {
|
|
public SkipPacketDecoderException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public SkipPacketDecoderException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|
|
|