tag used for unhandled error or Exception thrown by code
Questions tagged [unhandled]
170 questions
66
votes
9 answers
android.view.View$OnUnhandledKeyEventListener
I am new to Android Studio and I don't get why my toolbar isn't shown as described by https://developer.android.com/training/appbar/setting-up
I know there are already some other questions like mine on stackoverflow but they don't work at my…

David Schmidt
- 758
- 1
- 5
- 7
11
votes
4 answers
Can I get the future unhandled promise rejection behaviour now?
In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
My pipeline passed when it should have failed and deployed a version that is crashing on launch. If Node.js would have exited with…

Erik B
- 40,889
- 25
- 119
- 135
9
votes
2 answers
UnhandledException Event doesn't work?
I'm writing a little library which catches all unhandled exceptions, shows a little dialog (similar to the usual dialog of the NF) which gives the user the opportunity to send the exception to the developer. To do this, I use the…

Reignbeaux
- 1,333
- 3
- 12
- 15
8
votes
2 answers
Unhandled Exception in Winforms Application
I have a simple WinForms app that is used to enter test cases. Ever since I upgraded this application to .NET 4.0 and added a new tab page to the tab page control for validating XML against XSD schema the application has been randomly crashing. I've…

Loathian
- 1,177
- 1
- 14
- 20
8
votes
3 answers
Unhandled Exception in Java
I'm currently in the process of learning how to properly do custom exception and I stumbled upon a problem. Whenever I try to utilize an object of a class that throws this custom exception, my IDE's debugger (I'm using IntelliJ idea) says "Unhandled…

skulpt
- 527
- 2
- 6
- 25
8
votes
2 answers
Custom Elmah YSOD data
I'm using Elmah with ASP.NET and wondering how I would add custom data, such as a session variable, to an unhandled exception email.
I've tried several handlers in the Global.asax file but can't seem to find the right one.

Dana Benson
- 966
- 7
- 16
7
votes
3 answers
Final managed exception handler in a mixed native/managed executable?
I have an MFC application compiled with /clr and I'm trying to implement a final handler for otherwise un-caught managed exceptions. For native exceptions, overriding CWinApp::ProcessWndProcException works.
The two events suggested in Jeff's…

Aidan Ryan
- 11,389
- 13
- 54
- 86
6
votes
2 answers
Windows Forms Unhandled-Exception Dialog
I want to get Default Windows Forms Unhandled-Exception Dialog whenever my C# application encounters U-E.
In vs 2005 when I turn off jit Debugging in app.conf like this:

Pablo
- 28,133
- 34
- 125
- 215
6
votes
3 answers
unhandled exception type ParseException
I'm using this part of code in my app :
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'hh:mm:ss'Z'");
Date qdate = new GregorianCalendar(0,0,0).getTime();
try {
qdate = sdf.parse(dt);
} catch (ParseException e) {
…

Tasos Moustakas
- 308
- 3
- 12
- 22
5
votes
1 answer
Exception in MessageQueue callback: handleReceiveCallback
I am having an issue with detecting gestures. I get an error every time I double tap, and searching the internet for what it means seems futile - I only get solutions to particular cases which don't apply to me.
Here is the code:
package…

JayBee
- 540
- 1
- 5
- 22
4
votes
0 answers
Unhandled Exception During Garbage Collection
Language: C#
Runtime: .NET 4 Client
Issue: At ~14 minutes garbage collection occurs (as seen in the Diagnostic Tools) at this point an exception immediately follows with the following information:
Exception thrown at 0x163BA480 in Test.exe:…

Tomwa
- 196
- 1
- 12
3
votes
1 answer
× Unhandled Rejection (Error): invalid fragment object (argument="value", value=
I am new to Smart Contracts.
I am unable to read a smart contract from Binance test network. I keep getting an Unhandled Rejection every time I attempt to read my smart contract using ethers.js.
Error
Unhandled Rejection (Error): invalid fragment…

Deepak Raj
- 31
- 2
3
votes
1 answer
Unhandled promise rejection AVA
I want to use ava for test my code but when I try it I'm getting the following error... I think there is a catch (err) missing...
(node:7640) UnhandledPromiseRejectionWarning: C:\...\TesBoard-db\node_modules\ava\lib\node-arguments.js:9
…

Davos MG
- 33
- 3
3
votes
1 answer
Unhandling (unregistering) a system-wide 'HotKey'
I have defined a HotKey Ctrl + Space to activate my Windows Form. When the form handles this HotKey, this event is not seen by the system. Is there subsequently any way to unhandle these keystrokes? (That is, unregister the HotKey.)
Here is what I…

NoName
- 7,940
- 13
- 56
- 108
2
votes
2 answers
Unhandled exception in Windows Forms app
I have a Windows Forms application. It loads assemblies with the extension .Plugin.dll with Assembly.LoadFile. One of these "plugins" calls into another assembly dll. That dll eventually throws a ValidationException exception. The method that throws…

David Simmonds
- 31
- 1