An unhandled exception is an Exception that is thrown by execution but is never caught by the program, which results in a Exception Stack.

learn more… | top users | synonyms

0
votes
1answer
23 views

registering UnhandledException of AppDomain WPF

I am registering to un-handled exception of my WPF Application. After UnhandledExceptionHandler invokes, the application will close automatically ? Or do I need to call ShutdownProcess(); Is this ...
0
votes
0answers
20 views

Catch ActiveX Control Exception (prevent program stopped working)

I use an ActiveX control (qlickview ocx) on my form and it work well but sometimes (on close form OR reopen a document in the control) my application will be hang with this windows message: ...
0
votes
1answer
11 views

WCF NullReferenceException in the Finalizer

We had problems with WCF that took us a long time to diagnose so I'm posting them here in case someone has similar issues (haven't found a reference anywhere else). Our processes would often crash ...
-2
votes
1answer
25 views

I have an unhandled exception and a segmentation fault and I have fixed everything I could think of that might be causing it [closed]

Here is my code: https://gist.github.com/anonymous/0cb3456a0d6ebeb94dad And the error message: Unhandled exception at 0x77b415ee in testing.exe: 0xC0000005: Access violation reading location ...
2
votes
1answer
26 views

Within CPPUNIT_ASSERT, Keep Getting Access Violation

I have a set of classes to which I am trying to apply unit tests, to maintain their current utility through future revisions. My problem is that within CPPUNIT, to which I am new, where-ever I call ...
1
vote
0answers
48 views

boost::archive_exception causes unhandled exception within VisualStudio2012

A boost::archive_exception is confounding me. The exception details are as follows Unhandled exception: boost::archive::archive_exception at memory location... This occurs when attempting the ...
0
votes
1answer
28 views

Server Error in '/' Application. Windows Serrver 2012 IIS 8

I received a webpage from a developer and when I try to install it on my fresh installation of Windows Server 2012 with IIS 8 I get the following error: Could not load file or assembly ...
1
vote
1answer
47 views

photo chooser task windows phone 7.1

i need to take a picture from the directory of Windows phone in my application so i add a child Windows when i click on the text in this child Windows i add a button and i called public partial ...
0
votes
3answers
27 views

Please help Unhandeled exception

I am not a programmer. I have some software at work that keeps crashing on me. I used the Visual Studio debugger last time it crashed and found out it was unhandeled exceptions. The first unhandeled ...
4
votes
1answer
137 views

c++ Unhandled exception - how to debug

I have a problem when running a testcase in debug-mode: I get a pop-up-box with the message "Unhandled exception at 0x7c812fd3 in Test.exe: 0xE0000003: 0xe0000003.". The code breaks in free.c: void ...
8
votes
3answers
285 views

In asp.net-mvc 4 what is the best show unhandled exceptions in my view?

I have the following in my web.config: <customErrors mode="On" defaultRedirect="Error"> <error statusCode="404" redirect="Error/NotFound" /> </customErrors> I have a ...
0
votes
1answer
34 views

Exception was unhandled when calling method via reflection

Using a delegate, I'm calling an objects ("o") method ("ProcessElement") which returns an int: int result; object o; ... if (o != null) { try { Func<int> processElement = ...
0
votes
1answer
108 views

Unhandled Exception Error visual studio 2010 C++ (open gl) [closed]

Im trying to code a 3D model that I am reading in verts from a .obj It was all working with a standard teapot model, so I decided to create a spaceship for the actual assignment. I then changed it ...
0
votes
1answer
41 views

MVC 4 System.ArgumentException: Keyword not supported: 'initialcatalog'

Currently having some trouble when running my web app. I go to run it followed by it hitting an unhandled exception. Description: An unhandled exception occurred during the execution of the current ...
0
votes
0answers
67 views

Unhandled exception at a list c++ [closed]

The problem is where the arrow is and above i guess but i can't see it. Where the arrow is it checks if the word exists in the rest of the list.if it is it does something to that posistion. if it ...
0
votes
1answer
106 views

Unhandled Exception Error [closed]

I am experiencing an unhandled exception within xutility if (_Myproxy != 0) { // proxy allocated, drain it _Lockit _Lock(_LOCK_DEBUG); for (_Iterator_base12 **_Pnext = ...
1
vote
2answers
313 views

catch all unhandled exceptions in ASP.NET Web Api

How do I catch all unhandled exceptions that occur in ASP.NET Web Api so that I can log them? So far I have tried: Create and register an ExceptionHandlingAttribute Implement an Application_Error ...
1
vote
1answer
326 views

An unhandled exception of type 'System.ExecutionEngineException' occurred in XXX.exe

I have a DLL file that is written in C++. I am try to use in C++ DLL in my c# code. C++ method is called correctly but it gives error after process completed. Exception Details: ...
1
vote
2answers
38 views

Unhandled exception not stopping execution

I have the following code in my application, which is handling the Load event in System.Windows.Forms.Form: Private Sub frmBillingPoller_Load(ByVal eventSender As System.Object, ByVal eventArgs As ...
0
votes
1answer
19 views

istream Unhandled exception, stack overflow

I'm fairly new to C++, and am trying to get the istream to work. I have a class of: class rat { private: int num; int denom; public: rat(); rat(const int&, const int&); ...
0
votes
2answers
86 views

Fortran Unhandled Exception (msvcr100d.dll)

I'm getting this unhandled exception when I exit my program: Unhandled exception at 0x102fe274 (msvcr100d.dll) in Parameters.exe: 0xC0000005: Access violation reading location 0x00000005. The ...
0
votes
0answers
60 views

Facebook C# sdk random exception when posting photo

I am using Facebook C#sdk to upload photos to user profiles using a Windows Service as a background job. And I am logging exceptions in almost every place that I can think of and for the most part it ...
0
votes
1answer
66 views

SqlException was unhandled C# (cell value changed)

I want to change a value from the cell (grid view ).When I change the value , I'm getting "SqlException was unhandled In correct syntax near '=' "error. I debugged the code I entered 50 to the cell ...
0
votes
1answer
62 views

Google Drive SDK fetch causes unhandled exception

I'm trying to handle network failure exceptions when using Google Drive SDK and I have the following problem. I'm disconnecting my network and running this code try { FilesResource.InsertRequest ...
4
votes
2answers
115 views

Catch unhandled exceptions from any thread

Edit The answers to this question where helpful thanks I appreciate the help :) but I ended up using: http://code.msdn.microsoft.com/windowsdesktop/Handling-Unhandled-47492d0b#content Original ...
0
votes
2answers
57 views

Unhandled exception in my modified code

I am writing a POS system for HW, and I had to take my first code which used hundreds of variables and change it into a more compact program using arrays. This is my new code: #include ...
3
votes
1answer
179 views

ArgumentException was Unhandled(The Parameter is incorrect)

I am getting the exception ArgumentException was Unhandled(The Parameter is incorrect) in wp7 app when i touches the screen. I have already put all break points, but not getting why this exception is ...
0
votes
0answers
60 views

NUnit and AppDomain's UnhandledExceptionEventHandler

I'm having some issues writing a unit test in NUnit that checks that a custom exception (ProcessException) is thrown by a background worker in its RunWorkerCompleted event - for the sake of argument ...
-2
votes
1answer
61 views

Unhandled exception when reading from disconected socket

I already do know, that it is impossible to simply detect if socket is disconnected or not - the server and clients must shout "Can you hear me?" and "Yeah I can." just like we do on skype. But when ...
1
vote
1answer
55 views

Static nested class access throwing NoClassDefFoundError

I'm trying to use a Utility class made up of static nested classes for common functionality. These static nested classes are implementing a command style interface: public interface BooleanFunction{ ...
1
vote
1answer
68 views

Global Exceptionhandler does not catch some Exception (for example StackoverflowException)

I have registered global Exceptionhandlers in my Application (C#, WPF, .NET4) at the startup-routine on the following way: AppDomain.CurrentDomain.UnhandledException += (sender, args) => ...
1
vote
0answers
89 views

xcode: sigsegv crash with AddressBookUI

I have an error exc_bad_access (sigsegv) but I cannot understand why. The crashlog is not very informative. Can somebody help me? It seems to me that the error occurs when the app starts and loads ...
0
votes
1answer
221 views

How can I restrict a textbox to integers without getting errors in Vb.Net?

I'm currently trying to code a program that interfaces with USB devices based on their serial number. I have it partially working such that it will accept proper serial numbers in the textbox but if ...
0
votes
2answers
103 views

AppDomain.CurrentDomain.UnhandledException does not let me finish my function

Currently, I have a method that is called when there is an unhandled exception. All this does is log the exception to a dump file. However, the streamwriter does not write the full information I'd ...
6
votes
2answers
295 views

Infinite loop invalidating the TimeManager

I am experiencing a very tricky defect in my WPF application to track down. The error message is: An infinite loop appears to have resulted from repeatedly invalidating the TimeManager during ...
0
votes
1answer
52 views

Unhandled Exception while checking values of an array in C

I have an assignment to write a recursive program that gets an array (lets call it arr1), the size of the array (n), and a value(s). The program will check if there are two numbers in the array so ...
1
vote
1answer
106 views

Unit testing .NET events invocation

I have a static class that wraps around .NET events like UnhandledException and ProcessExit (of the CurrentAppDomain object), so that when the caller calls Initialize on the class, it subscribes my ...
0
votes
0answers
314 views

Opencv face recognition using fisherfaces

I am working on a face recognition based project and I have used Open cv fisherfaces. I first intend to save the faces of persons in a directory and read from this directory to train the fisher face ...
1
vote
2answers
82 views

How to detect unhandled exception due to disk full?

My application ran into a disk full error and somehow, as a result of the disk being full, an unhandled exception was thrown resulting in the set_terminate() handler being invoked. Normally, I would ...
4
votes
1answer
282 views

How to crash a process on Windows-7 without getting the WER dialog?

Is it possible to crash a regular user-mode process on Windows-7 without getting the Windows Error Reporting (WER) dialog? (When and if WER is normally enabled and no specific flags are applied.) ...
4
votes
2answers
386 views

AppDomain UnhandledException

I am working on a C# project and want to make use of the UnhandledException event to catch any exceptions I may have missed in my project (hoping there won't be any but to be on the same side). I ...
0
votes
1answer
315 views

Using $this when not in object context - in Laravel controller

I am using Laravel and I have just moved my code that is working locally into Live and am getting the exception below within my 'User' controller: Unhandled Exception Message: Using $this when not in ...
0
votes
5answers
118 views

Why does my code that adds controls in a loop fail?

public MainPage() { InitializeComponent(); CheckBox c = new CheckBox(); for (int i = 0; i < 2; i++) { c.Content = " Value "; lbox.Items.Add(c); } } lbox is an ...
-1
votes
1answer
335 views

InvalidOperationException was unhandled - why?

First of all, at the beginning of my code I declare an ArrayList public ArrayList ArrivalsInApp = new ArrayList();. Then, much much later, I am downloading some data from XML file. For each XmlNode ...
2
votes
1answer
151 views

Exception repeating infinitely, using Rx

Currently my application capture unhandled exceptions as follows: AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException; Application.Current.DispatcherUnhandledException += ...
0
votes
1answer
90 views

unhandled exception whith cvCreatImage in visual studio 2010

I am using openCV2.3.1 on windows7 in visual studio 2010, and whenever i try to create an image with cvCreateImage() it gives an unhandled exception. But when I try my code on code blocks it runs ...
2
votes
3answers
442 views

Best way to catch all unhandled exceptions in all Tomcat (GWT) servlets

I use Tomcat 7 and Lo4j for all my server logs and GWT for client (only AJAX calls). All my unhandled exceptions get logged in my catalina.log. Now I want to catch all exceptions and add some of the ...
1
vote
0answers
147 views

MiniDumpWriteDump from another process

I'm wanting to use MiniDumpWriteDump to generate crash logs for an application of mine. Microsoft recommends performing the dump from another process, which is what I'm trying to do. The issue I'm ...
1
vote
1answer
193 views

Python won't exit when called with absolute path from cron or subshell

I have some python scripts that run via cron, and they no longer exit correctly when the script is called with an absolute path. They will hang until the process is terminated. I believe it happened ...
3
votes
1answer
170 views

BizTalk Configuration.exe remote execution error

I'm writing a script to automate the installation of BizTalk Server and then apply the configurations through the BizTalk "configuration.exe" utility. When I run the configuration.exe utility locally ...

1 2 3 4 5