What does this error mean, and why does it apply? I can't find much info with Google about member classes and static contexts, or what those mean, in a case that seems relevant to my situation.
Here's the error I'm getting:
non-static variable this cannot be referenced from a static context
It points to this line, and at the new operator:
throw new ParenthesisException();
ParenthesisException is a private member class of the main class. I think the problem is probably related to that, but that's about all I can figure.
This is my definition of ParenthesisException. It is inside the main class definition: (I am sorry if the formatting is not very good)
private class ParenthesisException extends Throwable
{
public ParenthesisException(){}
public String strErrMsg()
{
return "ERROR: Every '(' needs a matching ')'";
}
}
I find the error message rather cryptic. I would appreciate a brief explanation of "static contexts" and why the new operator isn't working for my member class, and how I can throw an instance of a private member class.