0N/A/*
2362N/A * Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/* Generated By:JavaCC: Do not edit this line. TokenMgrError.java Version 0.7pre2 */
0N/Apackage com.sun.jmx.snmp.IPAcl;
0N/A
0N/Aclass TokenMgrError extends Error
0N/A{
0N/A private static final long serialVersionUID = -6373071623408870347L;
0N/A
0N/A /*
0N/A * Ordinals for various reasons why an Error of this type can be thrown.
0N/A */
0N/A
0N/A /**
0N/A * Lexical error occured.
0N/A */
0N/A static final int LEXICAL_ERROR = 0;
0N/A
0N/A /**
0N/A * An attempt wass made to create a second instance of a static token manager.
0N/A */
0N/A static final int STATIC_LEXER_ERROR = 1;
0N/A
0N/A /**
0N/A * Tried to change to an invalid lexical state.
0N/A */
0N/A static final int INVALID_LEXICAL_STATE = 2;
0N/A
0N/A /**
0N/A * Detected (and bailed out of) an infinite loop in the token manager.
0N/A */
0N/A static final int LOOP_DETECTED = 3;
0N/A
0N/A /**
0N/A * Indicates the reason why the exception is thrown. It will have
0N/A * one of the above 4 values.
0N/A */
0N/A int errorCode;
0N/A
0N/A /**
0N/A * Replaces unprintable characters by their espaced (or unicode escaped)
0N/A * equivalents in the given string
0N/A */
0N/A protected static final String addEscapes(String str) {
0N/A StringBuffer retval = new StringBuffer();
0N/A char ch;
0N/A for (int i = 0; i < str.length(); i++) {
0N/A switch (str.charAt(i))
0N/A {
0N/A case 0 :
0N/A continue;
0N/A case '\b':
0N/A retval.append("\\b");
0N/A continue;
0N/A case '\t':
0N/A retval.append("\\t");
0N/A continue;
0N/A case '\n':
0N/A retval.append("\\n");
0N/A continue;
0N/A case '\f':
0N/A retval.append("\\f");
0N/A continue;
0N/A case '\r':
0N/A retval.append("\\r");
0N/A continue;
0N/A case '\"':
0N/A retval.append("\\\"");
0N/A continue;
0N/A case '\'':
0N/A retval.append("\\\'");
0N/A continue;
0N/A case '\\':
0N/A retval.append("\\\\");
0N/A continue;
0N/A default:
0N/A if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
0N/A String s = "0000" + Integer.toString(ch, 16);
0N/A retval.append("\\u" + s.substring(s.length() - 4, s.length()));
0N/A } else {
0N/A retval.append(ch);
0N/A }
0N/A continue;
0N/A }
0N/A }
0N/A return retval.toString();
0N/A }
0N/A
0N/A /**
0N/A * Returns a detailed message for the Error when it is thrown by the
0N/A * token manager to indicate a lexical error.
0N/A * Parameters :
0N/A * EOFSeen : indicates if EOF caused the lexicl error
0N/A * curLexState : lexical state in which this error occured
0N/A * errorLine : line number when the error occured
0N/A * errorColumn : column number when the error occured
0N/A * errorAfter : prefix that was seen before this error occured
0N/A * curchar : the offending character
0N/A * Note: You can customize the lexical error message by modifying this method.
0N/A */
0N/A private static final String LexicalError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar) {
0N/A return("Lexical error at line " +
0N/A errorLine + ", column " +
0N/A errorColumn + ". Encountered: " +
0N/A (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar)) + "\"") + " (" + (int)curChar + "), ") +
0N/A "after : \"" + addEscapes(errorAfter) + "\"");
0N/A }
0N/A
0N/A /**
0N/A * You can also modify the body of this method to customize your error messages.
0N/A * For example, cases like LOOP_DETECTED and INVALID_LEXICAL_STATE are not
0N/A * of end-users concern, so you can return something like :
0N/A *
0N/A * "Internal Error : Please file a bug report .... "
0N/A *
0N/A * from this method for such cases in the release version of your parser.
0N/A */
0N/A public String getMessage() {
0N/A return super.getMessage();
0N/A }
0N/A
0N/A /*
0N/A * Constructors of various flavors follow.
0N/A */
0N/A
0N/A public TokenMgrError() {
0N/A }
0N/A
0N/A public TokenMgrError(String message, int reason) {
0N/A super(message);
0N/A errorCode = reason;
0N/A }
0N/A
0N/A public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) {
0N/A this(LexicalError(EOFSeen, lexState, errorLine, errorColumn, errorAfter, curChar), reason);
0N/A }
0N/A}