com.nflabs.zeppelin.zengine.ZQLException 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.zengine;
public class ZQLException extends Exception{
public ZQLException(Exception e){
super(e);
}
public ZQLException(String m){
super(m);
}
}