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

io.jexxa.jexxatest.integrationtest.rest.BadRequestException Maven / Gradle / Ivy

There is a newer version: 8.1.4
Show newest version
package io.jexxa.jexxatest.integrationtest.rest;

import kong.unirest.HttpResponse;

import java.io.Serial;

public class BadRequestException extends RuntimeException
{
    @Serial
    private static final long serialVersionUID = 1L;

    public BadRequestException(HttpResponse httpResponse) {
        super("Unknown HTTP URL : " + httpResponse.getRequestSummary().getUrl());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy