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

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

package play.template2.exceptions;

import play.template2.GTTemplateLocation;

public class GTRuntimeExceptionWithSourceInfo extends GTRuntimeException {

    public final GTTemplateLocation templateLocation;
    public final int lineNo;

    public GTRuntimeExceptionWithSourceInfo(String s, Throwable throwable, GTTemplateLocation templateLocation, int lineNo) {
        super(s, throwable);
        this.templateLocation = templateLocation;
        this.lineNo = lineNo;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy