Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
2k views

Why is UnhandledExceptionEventArgs.ExceptionObject an object and not an Exception?

Why is UnhandledExceptionEventArgs.ExceptionObject an object and not an Exception? I am attaching to AppDomain.UnhandledException. I would like to cast UnhandledExceptionEventArgs.ExceptionObject to ...
10
votes
3answers
4k views

Unhandled exceptions in BackgroundWorker

I have a small WinForms app that utilizes a BackgroundWorker object to perform a long-running operation. The background operation throws occasional exceptions, typically when somebody has a file open ...
8
votes
3answers
392 views

How can I make something that catches all 'unhandled' exceptions in a WinForms application?

Up until now, I just put a try/catch block around the Application.Run in the Program.cs entry point to the program. This catches all exceptions well enough in Debug mode, but when I run the program ...
7
votes
2answers
2k views

Catching Unhandled Exceptions in Child Threads in WPF

I have a WPF application that spins off several threads. I have defined a DispatcherUnhandledException event handler in App.xaml.cs that displays a detailed error message, and this handler gets called ...
6
votes
2answers
102 views

What controls the default UnhandledException policy in WinForms?

I am currently maintaining a WinForms application that listens to the Application.ThreadException event to trap unhandled exceptions on GUI threads. Now things have been working as expected until ...
6
votes
2answers
2k views

c++ stack trace from unhandled exception?

This question has been asked before and there have been windows-specific answers but no satisfactory gcc answer. I can use set_terminate() to set a function that will be called (in place of ...
5
votes
2answers
285 views

Design pattern for catching unhandled exceptions in AsyncTask

Folks, I catch unhandled Android exceptions via a code snippet like this, at the top of onCreate: try { File crashLogDirectory = new ...
5
votes
2answers
540 views

ASP.net MVC controller factory receiving request for 'favicon.ico'?

I've noticed that a request to 'favicon.ico' is being passed to my ASP.net MVC controller factory when using Google Chrome and the Visual Studio Development Server. The 'controllerType' parameter has ...
5
votes
2answers
232 views

Handling rude application aborts in .NET

I know I'm opening myself to a royal flaming by even asking this, but I thought I would see if StackOverflow has any solutions to a problem that I'm having... I have a C# application that is failing ...
5
votes
3answers
1k views

CryptographicException: Padding is invalid and cannot be removed and Validation of viewstate MAC failed

Monitoring my global exception logs this error seems to be impossible to remove no matter what I do, I thought I finally got rid of it but it's back again. You can see a strack trace of the error on a ...
5
votes
2answers
591 views

Exception handling with multiple forms

I'm seeing different behavior with exceptions being caught or not being caught when I am debugging vs. when I am running a compiled .exe. I have two forms (Form1 and Form2). Form1 has a button on it ...
5
votes
6answers
612 views

When can an exception in a .NET WinForms app just get eaten without being caught or bubbling up to a windows exception?

In several places in our code, we notice that if running under debugger it'll show that there's an unhandled exception in the code, however if running outside the debugger it will just ignore the ...
4
votes
1answer
164 views

Can Unhandled Exceptions in Child AppDomains be prevented from crashing the main process?

I'm writing a small plugins library which uses app domains to isolate plugins using .Net framework 4.0. Hence the code that goes in each plugin is out of my control. When an unhandled exception is ...
4
votes
1answer
110 views

Strange errors in my Asp.Net MVC 3 site

On my Asp.Net MVC 3 site I have an error logging functionality that sends e-mails to me whenever there's an unhandled error on the site. But recently I have been getting strange errors like the ...
4
votes
6answers
2k views

How can I set up .NET UnhandledException handling in a Windows service?

protected override void OnStart(string[] args) { AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); ...
4
votes
2answers
575 views

Unhandled exception

What is the best way to handle an unhandled exception in a WPF application?
4
votes
2answers
3k views

AppDomain.CurrentDomain.UnhandledException not firing without debugging

I have a .NET program with an event handler bound to Application.CurrentDomain.UnhandledException. When running the program with debugging, this event fires when an unhandled exception is thrown. ...
3
votes
1answer
57 views

Unhandled exception after reading histogram (created with calcHist)

I am trying to get histogram from my color (3-channel) image in OpenCV but every time I do the calcHist histogram like this : //int histSize[3]; //float hranges[2]; //const float* ranges[3]; //int ...
3
votes
3answers
71 views

Prevent outer exception from being discarded when thrown from BeginInvoke

I have a handler for Application.ThreadException, but I'm finding that exceptions aren't always getting passed to it correctly. Specifically, if I throw an exception-with-inner-exception from a ...
3
votes
3answers
210 views

Unhandled Exceptions in C# Class Library for Logging Purposes

I am new to software development and also new to stackoverflow, so go easy on me. BACKGROUND: I am developing a C# class library that processes xml messages sent by a third party application over ...
3
votes
2answers
139 views

How to avoid crashing while calling function throwing exception from .so

Here is what I did, I want to gracefully handle this exception: code_snippet: my.cpp #include<iostream> extern "C" void some_func() { throw "(Exception Thrown by some_func!!)"; } ...
3
votes
1answer
2k views

System.IO.FileLoadException. Could not load Accessibility, Version=2.0.0.0

I have just recently been getting this issue and it may be due to something I installed on my machine. I cannot recall though. Every once in a while I will receive a Microsoft .NET Framework message ...
3
votes
1answer
422 views

Getting an Unhandled Exception in VS2010 debugger even though the exception IS handled

I have an issue with VS2010 where the debugger stops with an Unhandled Exception. However, the exception is definitely handled. In fact, if I put code in the catch block, I'll hit it when I press ...
3
votes
1answer
179 views

How to capture unhandled exceptions on Windows Services?

I use AppDomain.UnhandledException Event to capture unhandled exceptions on WPF, Console and WinForms apps. But the same code isn't working on Windows Services. What should I do?
3
votes
5answers
192 views

CLR exits when a thread gets unhandled exception

I have background threads in my application. When one of the threads gets an exception that is not handled the entire CLR exits. Is it normal behavior, or is it a bug in the CLR? I would expect ...
3
votes
1answer
1k views

MVC Error: model item of type 'System.Collections.Generic.IEnumerable`1 required

I'm doing some modifications to a system, and I've run into an exception that I was hoping someone could help with?? The error I'm getting is the following: Exception Details: ...
3
votes
3answers
1k views

System.Runtime.InteropServices.COMException (0x80040154)

I am getting this error when I am trying to depoly my application on a target machine. I googled and found that some of the dll's need to be registered (that are used in my application) So, I copied ...
3
votes
3answers
703 views

wcf - catch unhandled exception

In WCF, Is there an event or method that catches unhandled exceptions, or do I need to put a try/catch in any method? Thanks
3
votes
3answers
2k views

Exceptions on .Net ThreadPool Threads

Duplicate: How to catch exceptions from a ThreadPool.QueueUserWorkItem? I am queueing up multiple delegates on the .Net ThreadPool for a large number of independant remoting calls that themselves ...
2
votes
2answers
250 views

UnhandledException in WP7

I am getting this weird error when making a WP7 app, and I can not see why. The only output/ error message I get is "UnhandledException: The parameter is incorrect. : : : ProgramName.App" This error ...
2
votes
1answer
180 views

Lisp IO problem

I am a lisp noob trying to learn lisp using sbcl v1.0.50. I am writing a simple logger and running into a memory fault which I do not understand, but which seems to be related to how I compile my ...
2
votes
2answers
332 views

WP7 Mango: Retemplating PhoneApplicationFrame created “Unspecified Error” exception

The following used to work in WP 7.0: I'm attempting to re-template the root PhoneApplicationFrame in my Mango beta 2 refresh (7712) project with the following Xaml: <Style ...
2
votes
6answers
243 views

NullReferenceException was unhandled - not sure what's null

I'm working on building an icosphere, and I've gotten as far as the draw portion of the code, but I keep getting a NullReferenceException was unhandled error. I know which bt of code it's pointing ...
2
votes
5answers
259 views

Why isn't the finally executed in this situation?

I have the following code: class SampleClass : IDisposable { public void Dispose() { Console.WriteLine("Execute Dispose!"); } } static void Main(string[] args) { SampleClass ...
2
votes
2answers
107 views

Can I Add a handler to AppDomain.CurrentDomain.UnhandledException in a class library

I want to subscribe to the AppDomain.CurrentDomain.UnhandledException event to catch any errors as im trying a new design pattern where I dont want to put a try catch on every event. usually in a win ...
2
votes
2answers
206 views

Your application has stopped working, even when hooking to UnhandledExceptionHandler

I have added a global error handler at the AppDomain level to my C# application, by hooking into the UnhandledExceptionHandler event. My problem is, that even though i am handling this exception, i ...
2
votes
1answer
238 views

What happens if an unhandled exception is thrown in Application_Start?

... will the Application_Start method be ran again for the next request(s) or not? Does it depend on ASP.NET version, hosting server version and/or other context? I am trying to determine if it's a ...
2
votes
2answers
545 views

When are DispatcherUnhandledException and AppDomain.UnhandledException insufficient (WPF app)?

I've hooked both of these, but occasionally my app still crashes and just throws up the Windows "an exception has occurred" dialog. When I click OK, the app just exits. Under what circumstances ...
2
votes
1answer
447 views

null reference exception was unhandled C#

private void StartReadInlay2() { byte[] cSN = new byte[8]; byte[] sw12 = new byte[2]; string strsw12 = "", errdes = "", result = ""; test1_2 = new ...
2
votes
3answers
356 views

Why doesn't this C++ code work?

int Socket::Connect(const std::string& host, int port) { if(this->_connected) throw "Socket is already connected"; // Get the IP from the string hostent* ip = ...
2
votes
1answer
192 views

Capturing unhandled exceptions in .Net 2.0. Wrong event called

I'm investigating a bit about how the unhandled exceptions are managed in .Net and I'm getting unexpected results that I would like to share with you to see what do you think about. The first one is ...
2
votes
1answer
180 views

NLog: Force BufferingTargetWrapper to empty on AppDomain UnhandledException

I have NLog configured in my application to to use the BufferingTargetWrapper for sending emails with the MailTarget. The problem I'm running into is I can not find a way to force NLog to empty the ...
2
votes
4answers
1k views

catch another process unhandled exception

I wish to know if i can catch the unhandled exceptions thrown by another process which I started using the Process.Start(...) I know i can catch the standered error using this link , but what I want ...
2
votes
2answers
814 views

Strange exceptions in .Net CF framework code under WinCE 6.0 R3

In our .Net CF app we are getting weird errors from parts of the code that shouldn't be having problems. For instance, the following code: public void AddParm(string str) { string[] pair ...
2
votes
3answers
51 views

Using handled exceptions as an intended trigger?

Occasionally in my code I will intentionally use a thrown exception as an event trigger. For instance, I will loop UNTIL an exception is thrown and then break; in the catch clause. Is this bad ...
2
votes
14answers
2k views

Would you ever NOT catch an exception, or throw an exception that won't be caught?

I've dealt with instances where I would throw/rethrow an exception knowing that the code surrounding it would catch the specific exception. But is there any time you would want to throw an exception, ...
1
vote
0answers
45 views

Unhandled exception stemming from IMPLEMENT_DYNCREATE - VC6 project, Upgrading to VS2010

I'm trying to upgrade an existing VC6 MFC application to VS2010, after a couple small fixes to an old .C file I was able to make it compile. Unfortunately, when it's ran, in either debug or release ...
1
vote
1answer
37 views

Check Unhandled Exception .NET 4

I would know what are the Exception that i didnt handle , even if doesn't throw any exception at the moment, in my Winform Program. Is there a way to do with .Net 4? I already made some research ...
1
vote
2answers
49 views

App enters unknown/locked state after handling UnhandledException

In my App.xaml.cs I have events to handle DispatcherUnhandledExceptions (UI thread) and UnhandledException (Non UI thread). When I throw an exception inside dispatcher.Invoke, the dispatcherhandler ...
1
vote
1answer
40 views

How to handle MMException from NAudio after Mic is unplugged during recording

I am working on an windows forms program which listens to all of the active audio input devices using NAudio. The problem I am running into is if an there is only one audio input device is plugged in ...

1 2 3