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

play.template2.exceptions.GTAppClassException 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;

// Thrown when we detect that the exception happened inside a play app class
public class GTAppClassException extends GTException {
    
    public final String className;
    public final int lineNo;

    public GTAppClassException(String msg, Throwable throwable, String className, int lineNo) {
        super(msg, throwable);
        this.className = className;
        this.lineNo = lineNo;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy