com.nflabs.zeppelin.result.ResultDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zeppelin-zengine Show documentation
Show all versions of zeppelin-zengine Show documentation
Zengine is java framework for data analysis on Hadoop. see http://nflabs.github.io/zeppelin/#/zengine
package com.nflabs.zeppelin.result;
public class ResultDataException extends Exception{
private static final long serialVersionUID = -6503372200666271740L;
public ResultDataException(Exception e){
super(e);
}
public ResultDataException(String m){
super(m);
}
}