com.nflabs.zeppelin.zengine.ZException 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
The newest version!
package com.nflabs.zeppelin.zengine;
public class ZException extends Exception{
private static final long serialVersionUID = -2039301692456478552L;
public ZException(Throwable e){
super(e);
}
public ZException(String m){
super(m);
}
}