com.nflabs.zeppelin.driver.ZeppelinDriverException 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.driver;
public class ZeppelinDriverException extends RuntimeException{
private static final long serialVersionUID = 8523926733092740130L;
public ZeppelinDriverException(Throwable e){
super(e);
}
public ZeppelinDriverException(String m) {
super(m);
}
}