Java – Error Thread.setDefaultUncaughtExceptionHandler

Error Thread.setDefaultUncaughtExceptionHandler… here is a solution to the problem.

Error Thread.setDefaultUncaughtExceptionHandler

I’m working on an Android app and for uncaught exceptions, I’ll do this

Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler()...);

That way, when an uncaught exception is thrown, I log it and send a request to my issue tracker to create a new issue. I want to do the same for mistakes. Is there a way to block Uncaught Error in Java or Android? I’ve combed through stackoverflow and Google, but haven’t found anything.

Solution

After commenting on its features and the fact that I couldn’t find anything related to this and couldn’t find information related to this, I did some testing and actually throws an error when one also does. The name is misleading, but in reality it also applies to errors. Thanks for the guidance of the comments.

Related Problems and Solutions