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

io.vrap.rmf.base.client.error.ApiServerException Maven / Gradle / Ivy

There is a newer version: 17.17.0
Show newest version

package io.vrap.rmf.base.client.error;

import io.vrap.rmf.base.client.*;

public class ApiServerException extends ApiHttpException {
    public ApiServerException(final int statusCode, final String body, final ApiHttpHeaders headers,
            final String message, final ApiHttpResponse response) {
        super(statusCode, body, headers, message, response);
    }

    public ApiServerException(final int statusCode, final String body, final ApiHttpHeaders headers,
            final String message, final ApiHttpResponse response, final ApiHttpRequest request) {
        super(statusCode, body, headers, message, response, request);
    }

    public ApiServerException(final int statusCode, final String body, final ApiHttpHeaders headers,
            final String message, final ApiHttpResponse response, final ResponseSerializer serializer) {
        super(statusCode, body, headers, message, response, serializer);
    }

    public ApiServerException(final int statusCode, final String body, final ApiHttpHeaders headers,
            final String message, final ApiHttpResponse response, final ApiHttpRequest request,
            final ResponseSerializer serializer) {
        super(statusCode, body, headers, message, response, request, serializer);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy