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

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

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

import java.net.HttpURLConnection;

public class GatewayResponseSerializingException extends ApiGatewayException {

    public static final String ERROR_MESSAGE = "Failed serializing ResponseBody to JSON string.";
    private static final Integer ERROR_CODE = HttpURLConnection.HTTP_INTERNAL_ERROR;

    public GatewayResponseSerializingException(Exception e) {
        super(e, ERROR_MESSAGE);
    }

    @Override
    protected Integer statusCode() {
        return ERROR_CODE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy