use of com.tvd12.ezyfoxserver.response.EzyErrorResponse in project ezyfox-server by youngmonkeys.
the class EzyAbstractDataHandler method responseError.
protected void responseError() {
EzyErrorParams params = new EzyErrorParams();
params.setError(EzySessionError.MAX_REQUEST_PER_SECOND);
response(new EzyErrorResponse(params));
}
Aggregations