1 4 package net.sourceforge.pmd.jsp.ast; 5 6 10 public abstract class SyntaxErrorException extends ParseException { 11 private int line; 12 private String ruleName; 13 14 18 public SyntaxErrorException(int line, String ruleName) { 19 super(); 20 this.line = line; 21 this.ruleName = ruleName; 22 } 23 24 27 public int getLine() { 28 return line; 29 } 30 31 34 public String getRuleName() { 35 return ruleName; 36 } 37 } 38 | Popular Tags |