When I try to run an applet I get the Exception:
java.lang.reflect.InvocationTargetException
I read that the invocation error would be due to access modifiers:
http://download.oracle.com/javase/tutorial/reflect/member/ctorTrouble.html
and further down in the stack trace I read:
Caused by: java.lang.RuntimeException: java.lang.IllegalAccessException:
Class sun.plugin2.applet.Plugin2Manager$12 can not access
a member of class gui.TestWindow with modifiers ""
I didn't think I had any problems with access modifiers, so just out of curiosity I put the public modifier on all fields and methods in that class, but the problem persists. I do also have a constructor with 0 arguments that is public, so it can't be that.