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

play.template2.exceptions.GTTemplateRuntimeException Maven / Gradle / Ivy

Go to download

RePlay is a fork of the Play1 framework, made and maintained by Codeborne.

The newest version!
package play.template2.exceptions;

/**
 * Special exception that should only be thrown when the error is a direct
 * consequence of a template-error. Eg. inside a java-method called from generated-list-code.
 *
 * When this exception passes out, we fix the stacktrace so that the first element is in the template itself.
 */
public class GTTemplateRuntimeException extends GTException {
    public GTTemplateRuntimeException(String s, Throwable cause) {
        super(s, cause);
    }

    public GTTemplateRuntimeException(String s) {
        super(s);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy