io.polaris.core.cluster.InstanceQueryException Maven / Gradle / Ivy
package io.polaris.core.cluster;
import io.polaris.core.err.UncheckedException;
/**
* @author Qt
* @since Apr 17, 2024
*/
public class InstanceQueryException extends UncheckedException {
private static final long serialVersionUID = 1L;
public InstanceQueryException() {
super();
}
public InstanceQueryException(String message) {
super(message);
}
public InstanceQueryException(String message, Throwable cause) {
super(message, cause);
}
public InstanceQueryException(Throwable cause) {
super(cause);
}
protected InstanceQueryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}