package se.nicklasgavelin.sphero.response.regular; import se.nicklasgavelin.sphero.response.ResponseMessage; /** * Response for the GetConfigurationBlockCommand * * @author Nicklas Gavelin, nicklas.gavelin@gmail.com, LuleƄ University of Technology */ public class GetConfigurationBlockResponse extends ResponseMessage { /** * Create a GetCOnfigurationBlockResponse from the received data * * @param rh The response header containing the response data */ public GetConfigurationBlockResponse( ResponseHeader rh ) { super( rh ); } }