Disable Netbeans Exception Report Window

I need to disable the Exceptions window that appears when you encounter an IDE error in Netbeans. I always let you know when I can, but it drives me crazy right now.

Do not get me wrong, I like the application, but I get tired of errors on my screen, sometimes I need to delete the file and create it again so that I can continue.

I can drag it to the side, but my mouse loses focus.

I am using Windows 7 and the latest version of Java (netbeans PHP ide)

Is it possible?

+6
source share
3 answers

You need to change <netbeans-install-dir>/etc/netbeans.conf

Add

 -J-Dnetbeans.exception.alert.min.level=99999 -J-Dnetbeans.exception.report.min.level=99999 

to the netbeans_default_options entry.

+11
source

You must set some properties when starting Netbeans. Change your application configuration in "nbproject / platform.properties" by finding the line run.args.extra=... and adding at the end:

 -J-Dnetbeans.exception.alert.min.level=99999 -J-Dnetbeans.exception.report.min.level=99999 

You will find information on the Netbeans Wiki .

+2
source

I would recommend using -J-Dnetbeans.exception.report.min.level=99999 , but not another. This means that if a problem occurs, an error icon will be displayed, and you can report an error if you have a moment, but a dialog box does not appear without your request.

+1
source

Source: https://habr.com/ru/post/895172/


All Articles