
cn.edu.tsinghua.tsfile.common.exception.ProcessorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsfile Show documentation
Show all versions of tsfile Show documentation
A columnar file format designed for time-series data
The newest version!
package cn.edu.tsinghua.tsfile.common.exception;
/**
* This Exception is used to handle some error in query processing
*
* @author Jinrui Zhang
*/
public class ProcessorException extends Exception {
private static final long serialVersionUID = 4137638418544201605L;
public ProcessorException(String msg) {
super(msg);
}
public ProcessorException(Throwable e) {
super(e);
}
public ProcessorException(Exception e) {
super(e);
}
public ProcessorException() {
super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy