All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.tid.rsvp.objects.ErrorSpec Maven / Gradle / Ivy

The newest version!
package es.tid.rsvp.objects;

public abstract class ErrorSpec extends RSVPObject{

	public ErrorSpec(byte[] bytes, int offset){
		super(bytes, offset);
		this.decode(bytes,offset);
	}
	
	public ErrorSpec(){
		super();
	}
	
	public abstract void encode();

	public abstract void decode(byte[] bytes, int offset);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy