The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
21 views

Set the default thread uncaught exception handler provider in Glassfish

I know how to set the handler in the VM. But I don't know how to set it for a Glassfish environment. How to set the default thread uncaught exception handler provider in Glassfish?
0
votes
1answer
51 views

starting a new thread in existing thread's uncaughtexception handler

If an uncaught exception is thrown and you want to recover by restarting an identical thread to the one the exception was just thrown in (e.g JMS connection lost), what's the easiest way? The class ...
0
votes
0answers
31 views

Are uncaught exceptions handles synchronized in android?

In the other words, can method uncaughtException(Thread thread, Throwable ex) execute more than in one thread in default uncaught exception handler? Сoncerning code: public class CrashLogger ...
3
votes
2answers
252 views

Java uncaughtExceptionHandler not working

I have a global exception handler routine which wraps some exceptions in runtime exceptions Like this public class ExceptionHandler { public static void handle(){ throw new RuntimeException(e); ...
0
votes
0answers
277 views

Details missing from Android Uncaught Exception handler

This UncaughtExceptionHandler should log all exception, and then kill the application. It does work as intended on my Samsung Galaxy SII running Android 4.0.3, but not on any other Android 2.3 ...
0
votes
0answers
109 views

UncaughtExceptionHandler for Java-agent

I'm trying to change UncaughtExceptionHandler for the thread that executes the premain() method of a Java-agent. So my code: /*AppUncaughtExceptionHandler class*/ public void uncaughtException(Thread ...
0
votes
2answers
697 views

android stop background service after activity crash

At the beginning, I would like apologize for bad english. There is my problem: I have a service in android which runs on background when is activity running. (This service synchronize user data with ...
0
votes
0answers
221 views

dalvikvm: thread exiting with uncaught exception

I have referred to the accepted answer of the post "java thread exceptions". My question is how can I avoid the following warning message in the log cat: 10-16 15:29:47.009: W/dalvikvm(3813): ...
0
votes
0answers
70 views

Async operation inside UncaughtExceptionHandler

I have an unhandled exception, which I am catching using the following: mDefaultHandler = Thread.getDefaultUncaughtExceptionHandler(); Thread.setDefaultUncaughtExceptionHandler(this); Within the ...
7
votes
1answer
259 views

Java: Mysterious Java uncaught exception handler [with code]

Something weird has happened. I've written a Java program, where I've done nothing to handle uncaught exceptions in any special way. But when I run this one particular program in Windows 7, there is ...
2
votes
3answers
517 views

Toast not showing up in UnCaughtExceptionHandler

I am using this code to handle any uncaught exceptions which might cause my application to crash. public class ExceptionHandler implements java.lang.Thread.UncaughtExceptionHandler { private ...
5
votes
4answers
529 views

How to re-throw an exception

In my onCreate() I set an UncaughtException handler as follows: Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() { @Override public void ...
0
votes
1answer
83 views

UncaughtExceptionHandler on Google App Engine Java

I would like to do some custom logic anytime there is an uncaught exception in my application. Normally I would do something like: Thread.setDefaultUncaughtExceptionHandler(myCustomHandler); ...
6
votes
2answers
196 views

Android Restarting the Application

I am trying to restart the app when the crash occurs in android using Thread.UncaughtExceptionHandler. Can i restart the app with current activity stack as a new process?? If yes how can i do it?
2
votes
1answer
96 views

Maven exec:java and UncaughtExceptionHandler

The following code works fine when running from java command line. However when running using exec:java I never see that line printed...Anyway to stop this behaviour? public static void main(String[] ...
0
votes
1answer
810 views

Crashing of apllication while using uncaught exception handler results to halt of application

I am using uncaught exception handler to catch exceptions but it results in the halt of my application. I am refering to this post How do I stop my application from zombifying after I handle an ...
1
vote
2answers
393 views

How to prevent a service from getting killed by Android because of uncaught exceptions?

I am investigating if there are any ways to prevent an android service being killed because of uncaught exception. We have 10 UI apps talking to 5-6 services. The platform is Android 2.2. Because of ...
4
votes
2answers
2k views

Should use both AppDomain.UnhandledException and Application.DispatcherUnhandledException?

After reading some excellent posts about the difference between AppDomain.UnhandledException and Application.DispatcherUnhandledException, it appears that I should be handling both. This is because ...
1
vote
1answer
438 views

Thread.setDefaultUncaughtExceptionHandler in Spring

I am developing a Spring application, and was wondering if there a part of the framework that let's me do something like this in a more elegant way, such as configuring something in XML?
2
votes
2answers
419 views

UncaughtExceptionHandler not catching some exceptions

I have created an UncaughtExceptionHandler as shown in this article. I have also registered this handler to catch exceptions in all threads like this: ...
4
votes
2answers
1k views

Spring Async Uncaught Exception handler

@Override @Async public void asyncExceptionTest() { int i=1/0; } How can I log this using Spring Async framework without having to put try catch around every async method? It doesnt seem to pass ...