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

io.quarkiverse.cxf.vertx.http.client.VertxHttpException Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.cxf.vertx.http.client;

public class VertxHttpException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public VertxHttpException(String message, Throwable cause) {
        super(message, cause);
    }

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

    public VertxHttpException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy