io.quarkiverse.cxf.vertx.http.client.VertxHttpException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cxf-vertx-client Show documentation
Show all versions of quarkus-cxf-vertx-client Show documentation
A CXF conduit using Vert.x Web client and an underlying HTTP client
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);
}
}