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

org.johnnei.enjin.internal.RequestUtils Maven / Gradle / Ivy

The newest version!
package org.johnnei.enjin.internal;

import org.johnnei.enjin.EnjinProtocolException;

public class RequestUtils {

	private RequestUtils() {
	}

	public static void verifyResponse(RequestWrapper request, ResponseWrapper response) {
		if (request.getId() != response.getId()) {
			throw new EnjinProtocolException("The ID of the response did not match the id of the request.");
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy