![JAR search and dependency download from the Maven repository](/logo.png)
se.javasoft.framework.development.exception.ModelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metamodel Show documentation
Show all versions of metamodel Show documentation
The meta model for javasoft.se development framework
The newest version!
package se.javasoft.framework.development.exception;
public class ModelException extends Exception {
/**
*
*/
private static final long serialVersionUID = 7506324082208779474L;
public ModelException(String type) {
super("The datatype " + type + " could not be found");
}
public ModelException(String type, Exception e) {
super("Failed to created datatype " + type, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy