io.fluxcapacitor.javaclient.publishing.GatewayException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Default Java client library for interfacing with Flux Capacitor.
package io.fluxcapacitor.javaclient.publishing;
import java.beans.ConstructorProperties;
public class GatewayException extends RuntimeException {
@ConstructorProperties({"message", "cause"})
public GatewayException(String message, Throwable cause) {
super(message, cause);
}
}