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

com.clouway.friendlyserve.RsBadRequest Maven / Gradle / Ivy

There is a newer version: 0.1.5
Show newest version
package com.clouway.friendlyserve;

import java.net.HttpURLConnection;

/**
 * @author Miroslav Genov ([email protected])
 */
public class RsBadRequest extends RsWrap {

  public RsBadRequest() {
    this(new RsEmpty());
  }

  public RsBadRequest(Response response) {
    super(new RsWithStatus(HttpURLConnection.HTTP_BAD_REQUEST, response));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy