
ingenias.exception.GenerationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegen Show documentation
Show all versions of codegen Show documentation
The INGENIAS Development Kit
package ingenias.exception;
public class GenerationException extends Exception {
private int line=0;
public GenerationException(String arg0, int line) {
super(arg0);
this.line=line;
}
public int getLine(){
return line;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy