All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nflabs.zeppelin.zengine.ZException Maven / Gradle / Ivy

Go to download

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy