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

com.astamuse.asta4d.template.TemplateNotFoundException Maven / Gradle / Ivy

Go to download

core functionalities of asta4d framework, including template and snippt implemention

There is a newer version: 1.2-M2
Show newest version
package com.astamuse.asta4d.template;

public class TemplateNotFoundException extends Exception {

    /**
     * 
     */
    private static final long serialVersionUID = 1L;

    public TemplateNotFoundException(String path) {
        super("Template [" + path + "] does not exist.");
    }

    public TemplateNotFoundException(String path, String extraMsg) {
        super("Template [" + path + "] does not exist." + extraMsg);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy