com.clickzetta.platform.common.CZException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.clickzetta.platform.common;
public class CZException extends RuntimeException {
public CZException(String message) {
super(message);
}
public CZException(String message, Throwable cause) {
super(message, cause);
}
public CZException(Throwable cause) {
super(cause);
}
public CZException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy