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

nva.commons.apigateway.exceptions.BadGatewayException Maven / Gradle / Ivy

There is a newer version: 1.40.19
Show newest version
package nva.commons.apigateway.exceptions;

import java.net.HttpURLConnection;

public class BadGatewayException extends ApiGatewayException {

    public BadGatewayException(String message) {
        super(message);
    }

    @Override
    protected Integer statusCode() {
        return HttpURLConnection.HTTP_BAD_GATEWAY;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy