package uc; import java.io.*; public class UnknownUCMsg extends UCMsg { protected UnknownUCMsg( short type, byte[] data ) { this.type = type; this.data = data; } void read( DataInputStream dataIn ) throws IOException { } void write( DataOutputStream dataOut ) throws IOException { } public void open( UCMessageable processor ) { processor.processMsg( this ); } }