com.clickzetta.platform.common.ArrowFieldWriterException 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 ArrowFieldWriterException extends RuntimeException {
public ArrowFieldWriterException() {
}
public ArrowFieldWriterException(String message) {
super(message);
}
public ArrowFieldWriterException(String message, Throwable cause) {
super(message, cause);
}
public ArrowFieldWriterException(Throwable cause) {
super(cause);
}
public ArrowFieldWriterException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy