File src/de/jandankert/jscriptbox/exception/ScriptParserException.java
Last commit: Sat May 30 23:22:58 2026 +0200 Jan Dankert Refactoring package openrat->jandankert because the maven artefact is in namespace de.jandankert
1 package de.jandankert.jscriptbox.exception; 2 3 import de.jandankert.jscriptbox.parser.Token; 4 5 public class ScriptParserException extends ScriptException 6 { 7 8 public ScriptParserException(String message ) 9 { 10 super( message ); 11 } 12 public ScriptParserException(String message, Integer lineNumber ) 13 { 14 super( message + (lineNumber>0?" on line " + lineNumber:"") ); 15 } 16 public ScriptParserException(String message, Token token ) 17 { 18 super( message + (token.getLineNumber()>0?" on line " + token.getLineNumber():"") ); 19 } 20 }
Downloadsrc/de/jandankert/jscriptbox/exception/ScriptParserException.java
History Sat, 30 May 2026 23:22:58 +0200 Jan Dankert Refactoring package openrat->jandankert because the maven artefact is in namespace de.jandankert