This error is just bizarre, my code compiles fine, I can see there are no problems with it, yet this error has just popped up. I have tried re-starting netbeans and there is no additional exception information.
What can cause this?
Thanks
|
This error is just bizarre, my code compiles fine, I can see there are no problems with it, yet this error has just popped up. I have tried re-starting netbeans and there is no additional exception information. What can cause this? Thanks |
|||||||||
|
|
I guess you are using an IDE (like Netbeans) which allows you to run the code even if certain classes are not compilable. During the application's runtime, if you access this class it would lead to this exception. |
|||||||
|
|
If it is Netbeans, try to uncheck "Compile on save" setting in the project properties (Build -> Compiling). This is the only thing which helped me in a similar situation. |
|||
|
|
|
Even though this question is old , I want to note this answer for NETBEANS users : delete everything in |
|||
|
|
|
Disable Deploy on Save in the Project's Properties/Run screen. That's what worked for me finally. Why the hell NetBeans screws this up is beyond me. Note: I was able to compile the file it was complaining about using right-click in NetBeans. Apparently it wasn't really compiling it when I used Build & Compile since that gave no errors at all. But then after that, the errors just moved to another java class file. I couldn't compile then since it was grayed out. I also tried deleting the build and dist directories in my NetBeans project files but that didn't help either. |
|||
|
|
|
Did you try compiling it using the command line? you'll have to use the command "javac" for that |
|||
|
|
|
Faced the same problem in Netbeans. Renaming problematic Class and then renaming it back solved the problem. |
|||
|
|