com.mercadopago.net.HttpStatus Maven / Gradle / Ivy
package com.mercadopago.net;
/** Http status class. */
public class HttpStatus {
public static final int OK = 200;
public static final int CREATED = 201;
public static final int BAD_REQUEST = 400;
public static final int FORBIDDEN = 403;
public static final int INTERNAL_SERVER_ERROR = 500;
}