tags:

views:

65

answers:

1

Error anaylsing resource: java.util.NoSuchElementException: token 82 does not exsist.

What is token 82? I can not find it here: http://www.csgnetwork.com/asciiset.html

CODE:

package irc.irc2000.classCustomization.uporabniskiVmesniki.tipi;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface Report {
}
A: 

i am parsing data with JAVACC and when i am parsing previous java code i get this error of token 82. I just want to know what is token 82?

bombac
You should edit your question instead of adding additional info as answer.
stacker
@bombac: Please do not add answers to your own question (unless you really answer them). You should edit your question instead to provide more information.
Peter Lang
@bombac - which grammar did you use to compile the parser? A standard grammar or some custom files?
Andreas_D
@bobac: This is not a forum board. Also, if you google for token 82 and find **no** information whatsoever, chances are the error message is coming from some unknown third party library you are using.Also, why did you post a link to an ASCII table? I'm struggling with findin any correlation to your error.Please ask more detailed questions.
Michael