com.jeffpalm.javaparser
Class TokenMgrError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by com.jeffpalm.javaparser.TokenMgrError
All Implemented Interfaces:
java.io.Serializable

public class TokenMgrError
extends java.lang.Error

Description of the Class

Author:
Mike Atkinson
See Also:
Serialized Form

Constructor Summary
TokenMgrError()
          Constructor for the TokenMgrError object
TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, java.lang.String errorAfter, char curChar, int reason)
          Constructor for the TokenMgrError object
TokenMgrError(java.lang.String message, int reason)
          Constructor for the TokenMgrError object
 
Method Summary
protected static java.lang.String addEscapes(java.lang.String str)
          Replaces unprintable characters by their espaced (or unicode escaped) equivalents in the given string
 java.lang.String getMessage()
          You can also modify the body of this method to customize your error messages.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TokenMgrError

public TokenMgrError()
Constructor for the TokenMgrError object


TokenMgrError

public TokenMgrError(java.lang.String message,
                     int reason)
Constructor for the TokenMgrError object

Parameters:
message - Description of the Parameter
reason - Description of the Parameter

TokenMgrError

public TokenMgrError(boolean EOFSeen,
                     int lexState,
                     int errorLine,
                     int errorColumn,
                     java.lang.String errorAfter,
                     char curChar,
                     int reason)
Constructor for the TokenMgrError object

Parameters:
EOFSeen - Description of the Parameter
lexState - Description of the Parameter
errorLine - Description of the Parameter
errorColumn - Description of the Parameter
errorAfter - Description of the Parameter
curChar - Description of the Parameter
reason - Description of the Parameter
Method Detail

getMessage

public java.lang.String getMessage()
You can also modify the body of this method to customize your error messages. For example, cases like LOOP_DETECTED and INVALID_LEXICAL_STATE are not of end-users concern, so you can return something like : "Internal Error : Please file a bug report .... " from this method for such cases in the release version of your parser.

Overrides:
getMessage in class java.lang.Throwable
Returns:
The message value

addEscapes

protected static final java.lang.String addEscapes(java.lang.String str)
Replaces unprintable characters by their espaced (or unicode escaped) equivalents in the given string

Parameters:
str - The feature to be added to the Escapes attribute
Returns:
Description of the Return Value