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

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

There is a newer version: 17.15.1
Show newest version
package io.vrap.rmf.base.client.error;

import io.vrap.rmf.base.client.ApiHttpHeaders;
import io.vrap.rmf.base.client.ApiHttpRequest;
import io.vrap.rmf.base.client.ApiHttpResponse;

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

    public InternalServerErrorException(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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy