io.convergence_platform.common.responses.HttpErrors Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-lib Show documentation
Show all versions of service-lib Show documentation
Holds the common functionality needed by all Convergence Platform-based services written in Java.
The newest version!
package io.convergence_platform.common.responses;
public class HttpErrors {
public static final int ACCESS_DENIED = 403;
public static final int NOT_FOUND = 404;
public static final int GOOD_REQUEST_BAD_CONTENT = 422;
public static final int BAD_REQUEST = 400;
public static final int SERVICE_UNAVAILABLE = 503;
public static final int INTERNAL_ERROR = 500;
public static final int GATEWAY_ERROR = 502;
}