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

se.javasoft.framework.development.exception.ModelException Maven / Gradle / Ivy

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