14 lines
		
	
	
	
		
			420 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			420 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 message) {
 | |
| 		super(message);
 | |
| 	}
 | |
| 
 | |
| 	public SkipPacketDecoderException(Throwable cause) {
 | |
| 		super(cause);
 | |
| 	}
 | |
| }
 |