antlr
Class RecognitionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--antlr.ANTLRException
                    |
                    +--antlr.RecognitionException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MismatchedCharException, MismatchedTokenException, NoViableAltException, NoViableAltForCharException, SemanticException

public class RecognitionException
extends ANTLRException

Untamed:

See Also:
Serialized Form

Field Summary
 int column
          Enabled:
 String fileName
          Enabled:
 int line
          Enabled:
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
RecognitionException()
          Enabled:
RecognitionException(String s)
          Enabled: RecognitionException constructor comment.
RecognitionException(String s, String fileName, int line)
          Enabled: RecognitionException constructor comment.
 
Method Summary
 int getColumn()
          Enabled:
 String getErrorMessage()
          Enabled: @deprecated As of ANTLR 2.7.0
 String getFilename()
          Enabled:
 int getLine()
          Enabled:
 String toString()
          Suppressed:
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

fileName

public String fileName
Enabled:


line

public int line
Enabled:


column

public int column
Enabled:

Constructor Detail

RecognitionException

public RecognitionException()
Enabled:


RecognitionException

public RecognitionException(String s)
Enabled: RecognitionException constructor comment.

Parameters:
s - java.lang.String

RecognitionException

public RecognitionException(String s,
                            String fileName,
                            int line)
Enabled: RecognitionException constructor comment.

Parameters:
s - java.lang.String
Method Detail

getColumn

public int getColumn()
Enabled:


getErrorMessage

public String getErrorMessage()
Enabled: @deprecated As of ANTLR 2.7.0


getFilename

public String getFilename()
Enabled:


getLine

public int getLine()
Enabled:


toString

public String toString()
Suppressed:

Overrides:
toString in class Throwable
Returns:
a string representation of this throwable.


comments?