Tagged Questions
The unhandled tag has no wiki summary.
7
votes
2answers
459 views
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 ...
5
votes
3answers
887 views
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 ...
2
votes
1answer
74 views
Unhandled exception in debug mode but works fine in release
I don't know why but this code below gives this error in debug mode when compiling in 64-bit:
Unhandled exception at 0x000000013f488f55 in OpenGL.exe: 0xC0000005:
Access violation reading ...
2
votes
1answer
85 views
Silverlight exception in ViewModel not caught in Application_UnhandledException
I have the following situation where an Exception thrown in a ViewModel does not bubble up to the Application_UnhandledException in App.xaml.cs.
I have an ObservableCollection in the ViewModel ...
2
votes
2answers
125 views
Unhandled exception with C++ class function
I am writing a program which will preform texture synthesis. I have been away from C++ for a while and am having trouble figuring out what I am doing wrong in my class. When I run the program, I get ...
2
votes
1answer
260 views
StackOverflowError in XMLModelUpdater.changeStructuredDocumentRegion
Eclipse has just today taken to giving me an error every time I try to create a new file. A window pops up saying
Unhandled event loop exception
java.lang.StackOverflowError
when I open up the ...
2
votes
2answers
769 views
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:
<configuration>
...
2
votes
1answer
90 views
WPF - What information to capture when handling unhandled exceptions?
I am developing an application in WPF / .Net 3.5 that will be available for download on the internet. I am - to the best of my ability - writing bug free code, and using exceptions only where ...
1
vote
2answers
78 views
Linq Aggregate produces error: “Exception has been thrown by the target of an invocation. // Unhandled Expression Type: 1001”
The following line of code keeps crashing on me with: "Exception has been thrown by the target of an invocation. // Unhandled Expression Type: 1001"
Can anyone tell why just by looking at it?
...
1
vote
1answer
162 views
VB.NET - NullReferenceException Unhandled
Usually I handle my bugs by myself but this time I need help of experts!
This never happened to me, and the less data one has (usually) the less you can say what happened.
I am trying to write a ...
1
vote
1answer
26 views
Google AdBot is causing an exception on visit that I can't track down
I have a mobile site that has a smart-phone version and a non smart-phone version and my issue is on the non smart-phone version. The version in question is built using the mobile framework so that ...
1
vote
3answers
167 views
Handle unhandled exceptions in asp.net
How can we prevent page crash in asp.net? Is there any generic function or place like global.asax where we specify a file to redirect to when an unhanded exception occurs? (like we redirect to a ...
1
vote
3answers
591 views
Getting Windows error reporting dialog
In my C# app, even I handle exception :
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
AppDomain.CurrentDomain.UnhandledException +=
new ...
1
vote
5answers
4k views
VS2008 Debugger does not break on unhandled exception
I'm having an odd problem with my vs debugger. When running my program under the vs debugger, the debugger does not break on an unhandled exception. Instead control is returned to VS as if the ...
0
votes
0answers
61 views
Pivotviewer CXML DTD Error
I have deployed my pivotviewer application to a test server, everything is setup correctly on the server, it has the relevant mimetypes and pivotviewer handlers configured.
But when i try to access ...
0
votes
0answers
33 views
vs2005 c++ Run time error when I use google mock
I can compile my unit test code successfully. However, the run time error will occur. The error message is
Unhandled exception at 0x0017f98e in ConfigurationManager.exe: 0xC0000005: Access ...
0
votes
1answer
164 views
Unhandled exception details in Glassfish
I would like to see the exception details when an unhandled exception thrown in Glassfish (In the web page, not logs).
This error page shows but there's no useful information. Is there an option to ...
0
votes
1answer
81 views
Unhandled exception while reading structures
The program throws an unhandled exception on this line:
}else if(s == "backpack"){
cout << "\nEquipped items: " << endl;
cout << weapon->Name << endl << ...
0
votes
1answer
276 views
C++ - Unhandled exception when using atoi()
When using this code, it throws an unhandled writing exception, which I'm almost certain is to do with the atoi() function.
while(true){
char* item = "";
cin ...
0
votes
1answer
256 views
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 ...
0
votes
5answers
88 views
Why two different results while handling the same Exception in C#?
I handled the same exception in two programs, but I got the different results. I don't know why.
the first result is the one the program unable to caught
...
0
votes
2answers
74 views
Compile issues based on different platforms
I'm compiling a solution which runs fine on the PC but when trying to compile it for a different platform I get the following error:
"Unhandled Exception: System.ArgumentException: An item with the ...
0
votes
1answer
155 views
.Net Equivalent of set_unexpected()
Is there a .net equivalent to the C++ unexpected()/set_unexpected() functionality?
Edit: Sorry--I omitted some details previously:
Language: C# 2.0
I have some legacy apps that seem to be ...