Questions tagged [uncaught-exception]

UncaughtException is thrown when exception is not handled by try/catch block. UncaughtException wraps the original exception that has been occurred.

314 questions
93
votes
13 answers

Unexpected token < in first line of HTML

I have an HTML file : DemoAPI
simi kaur
  • 1,257
  • 3
  • 15
  • 19
92
votes
5 answers

Ideal way to set global uncaught exception Handler in Android

I want to set a global uncaught exception handler for all the threads in my Android application. So, in my Application subclass I set an implementation of Thread.UncaughtExceptionHandler as default handler for uncaught…
Samuh
  • 36,316
  • 26
  • 109
  • 116
40
votes
2 answers

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 it is significantly more likely the user can…
Kyle
  • 575
  • 1
  • 4
  • 9
20
votes
3 answers

Recover from Uncaught Exception in Node.JS

OK, so I have a problem. If an uncaught exception occurs while I am handling an HTTP request, I have no opportunity to call the end() method on the http.ServerResponse object. Therefore, the server hangs forever and never fulfills the…
BMiner
  • 16,669
  • 12
  • 53
  • 53
18
votes
2 answers

Defining one global UncaughtExceptionHandler for all threads of my application

I want to define one application level UncaughtExceptionHandler in my Java application that is called if an uncaught exception is thrown in one thread of my application. I know that is possible define an uncaught exception for a group of thread…
aleroot
  • 71,077
  • 30
  • 176
  • 213
16
votes
3 answers

How to debug "uncaught exception: undefined (unknown)" in Firefox

I have this line come up in the console, only in Firefox, from my JavaScript application I'm developing: It seems relatively harmless, but I'm curious if there's any way to deduce its origin, because it must come from somewhere, even if it claims…
MattTreichel
  • 1,418
  • 3
  • 18
  • 35
14
votes
3 answers

How to grab uncaught exceptions in a Java servlet web application

Is there a standard way to catch uncaught exceptions that happen inside of a java servlet container like tomcat or Jetty? We run a lot of servlets that come from libraries so we cannot easily put our on try/catch code. It would also be nice to in…
benstpierre
  • 32,833
  • 51
  • 177
  • 288
11
votes
6 answers

How to ignore specific type of uncaught exception in Eclipse?

I am using a third party library in my Java application. This third party library throws a custom uncaught exception at every application startup. The exception is harmless and only used for logging purposes internally to the third party library. …
Tansir1
  • 1,789
  • 2
  • 15
  • 28
11
votes
2 answers

Is there any trick to detect if an object is created during execution of another destructor?

This is kind of a follow up on Why can't Alexandrescu use std::uncaught_exception() to implement SCOPE_FAIL in ScopeGuard11? I would like to detect if someone is creating MyClass in the destructor of another class (or with an active destructor…
odinthenerd
  • 5,422
  • 1
  • 32
  • 61
11
votes
3 answers

thread exiting with uncaught exception: NO stack trace

My application is causing a force close somewhere but instead of getting a FATAL EXCEPTION with the usual (and very informative) stack trace in my LogCat, I only receive only the following 4 lines: 06-27 07:08:54.546: D/dalvikvm(14351):…
9
votes
2 answers

Why bother with setting the "sun.awt.exception.handler" property?

Here's some code that catches an exception thrown on the Event Dispatch Thread: package com.ndh.swingjunk; import java.awt.EventQueue; import javax.swing.JFrame; public class EntryPoint { public static void main(String[] args) { …
Nathan Hughes
  • 94,330
  • 19
  • 181
  • 276
9
votes
2 answers

Do errors thrown within UncaughtExceptionHandler get swallowed?

Thread.UncaughtExceptionHandler states that when the method which handles uncaught exceptions itself throws an exception, that exception will be ignored: void uncaughtException(Thread t, Throwable e): Method invoked when the given thread terminates…
Pacerier
  • 86,231
  • 106
  • 366
  • 634
9
votes
3 answers

Is there any way to execute code after an uncaught exception in iOS?

I have been working on a framework for several applications which implements multi-level logging. It is mainly used in applications used in-house to test communications with other devices, yet is also used in some applications that we will be…
mbuc91
  • 1,270
  • 11
  • 17
8
votes
1 answer

node.js - PM2 log uncaught exceptions to third-party service (as Logentries)

I'm using pm2 (https://github.com/Unitech/pm2) in my node.js project. Also I'm sending logs of errors of the app in Logentries (https://logentries.com). I wonder is it possible to log uncaught exceptions from the app (when something fails badly and…
Kosmetika
  • 20,774
  • 37
  • 108
  • 172
8
votes
3 answers

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 final Context myContext; public…
Archie.bpgc
  • 23,812
  • 38
  • 150
  • 226
1
2 3
20 21