FileDocCategorySizeDatePackage
SemanticException.javaAPI DocGlassfish v2 API635Wed Aug 30 15:34:10 BST 2006persistence.antlr

SemanticException

public class SemanticException extends RecognitionException

Fields Summary
Constructors Summary
public SemanticException(String s)

        super(s);
    
public SemanticException(String s, String fileName, int line)

deprecated
As of ANTLR 2.7.2 use {@see #SemanticException(char, String, int, int) }

        this(s, fileName, line, -1);
    
public SemanticException(String s, String fileName, int line, int column)

        super(s, fileName, line, column);
    
Methods Summary