1 package persistence.antlr; 2 3 8 9 public class SemanticException extends RecognitionException { 10 public SemanticException(String s) { 11 super(s); 12 } 13 14 15 public SemanticException(String s, String fileName, int line) { 16 this(s, fileName, line, -1); 17 } 18 19 public SemanticException(String s, String fileName, int line, int column) { 20 super(s, fileName, line, column); 21 } 22 } 23 | Popular Tags |