Package net.sourceforge.pmd.lang.vm.ast
Class TokenMgrError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sourceforge.pmd.lang.vm.ast.TokenMgrError
-
- All Implemented Interfaces:
Serializable
@Deprecated public class TokenMgrError extends RuntimeException
Deprecated.for removal in PMD 7.0.0- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TokenMgrError()
Deprecated.TokenMgrError(boolean eofSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason)
Deprecated.TokenMgrError(String message, int reason)
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected static String
addEscapes(String str)
Deprecated.Replaces unprintable characters by their escaped (or unicode escaped) equivalents in the given stringprotected static String
lexicalError(boolean eofSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar)
Deprecated.Returns a detailed message for the Error when it is thrown by the token manager to indicate a lexical error.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
addEscapes
protected static final String addEscapes(String str)
Deprecated.Replaces unprintable characters by their escaped (or unicode escaped) equivalents in the given string
-
lexicalError
protected static String lexicalError(boolean eofSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar)
Deprecated.Returns a detailed message for the Error when it is thrown by the token manager to indicate a lexical error. Parameters : EOFSeen : indicates if EOF caused the lexicl error curLexState : lexical state in which this error occurred errorLine : line number when the error occurred errorColumn : column number when the error occurred errorAfter : prefix that was seen before this error occurred curchar : the offending character Note: You can customize the lexical error message by modifying this method.
-
-