io.contek.zeus.client.errors.GatewayClientException Maven / Gradle / Ivy
package io.contek.zeus.client.errors;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
@NotThreadSafe
public abstract class GatewayClientException extends RuntimeException {
public GatewayClientException(@Nullable String message) {
super(message);
}
public GatewayClientException(@Nullable Throwable cause) {
super(cause);
}
public GatewayClientException(@Nullable String message, @Nullable Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy