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

nva.commons.apigateway.exceptions.BadRequestException 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 BadRequestException extends ApiGatewayException {

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

    public BadRequestException(String message, Exception cause) {
        super(cause, message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy