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

com.aggrepoint.dao.FunctionNotFoundException Maven / Gradle / Ivy

The newest version!
package com.aggrepoint.dao;

/**
 * 
 * @author Jiangming Yang ([email protected])
 */
public class FunctionNotFoundException extends Exception {
	private static final long serialVersionUID = 1L;

	String name;

	protected FunctionNotFoundException(String name) {
		this.name = name;
	}

	public String getName() {
		return name;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy