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

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

Go to download

Zengine is java framework for data analysis on Hadoop. see http://nflabs.github.io/zeppelin/#/zengine

There is a newer version: 0.3.3
Show newest version
package com.nflabs.zeppelin.zengine;

public class ZQLException extends Exception{
    private static final long serialVersionUID = -1706289522346311416L;

    public ZQLException(Exception e){
		super(e);
	}
	
	public ZQLException(String m){
		super(m);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy