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

io.convergence_platform.common.responses.HttpErrors Maven / Gradle / Ivy

Go to download

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy