
cn.edu.tsinghua.tsfile.common.exception.DecoderNotFoundException 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 in that specified decoder doesn't exist.
* This Exception extends super class {@link java.lang.Exception}
*
* @author kangrong
*/
public class DecoderNotFoundException extends Exception {
private static final long serialVersionUID = -310868735953605021L;
public DecoderNotFoundException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy