
com.aggrepoint.dao.FunctionNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apdao Show documentation
Show all versions of apdao Show documentation
Data Access Object layer utilities
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