tag used for unhandled error or Exception thrown by code
Questions tagged [unhandled]
170 questions
0
votes
1 answer
ASP.NET SQL Error Loading Page
We're getting the following error message when trying to login to our ASP.NET application:
Server Error in '/' Application.
The wait operation timed out
Description: An unhandled exception occurred during the execution of the current web request.…

Carleton
- 1
- 1
0
votes
2 answers
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 same key has already been added."
Anyone know what…

meds
- 21,699
- 37
- 163
- 314
0
votes
1 answer
Unhandled exception in msvcr110d.dll
Everything seems to be okay but when I enter I it says
Unhandled exception at 0x64A1EB90 (msvcr110d.dll) in ConsoleGame1.exe: 0xC0000005: Access violation writing location 0xCCCCCCCC.
First-chance exception at 0x64A1EB90 (msvcr110d.dll) in…

user2594877
- 25
- 1
- 2
- 4
0
votes
1 answer
openCV / unhandled exception or msvcp100d.dll
I do realise that this problem is pretty common, but I have spent around 4 days so far, trying to fix it on my own, using all the smart advice I found on the Internet and - unfortunately - I've failed.
I managed to make openCV2.4.6 work with my…

Entalpia
- 757
- 9
- 21
0
votes
3 answers
Unhandled Exception, writing information to a file C language
this is what i'm trying to do,
I have a file with information in it. I'm trying to rewrite it so before every line, the number of the line will appear.
The basic idea i have in mind works like this:
while i haven't reached the end of the file:
save…

Oria Gruber
- 1,513
- 2
- 22
- 44
0
votes
1 answer
in C++ "unhandled exception at 0x778215de in prject1.exe: 0xC0000005:Access violating writing location 0x00000016"
When I am debugging a project, gives me an error on the window
unhandled exception at 0x778215de in prject1.exe: 0xC0000005:
Access violating writing location 0x00000016
And in mlock.c shows me that code lines:
void __cdecl _unlock (
…

11532
- 1
- 3
0
votes
1 answer
Access violation at same program location
I am getting the error: Unhandled exception at 0x77d815de in client.exe: 0xC0000005: Access violation reading location 0x00000000.
I understand what the normal access violation error means, but this one keeps repeating itself at location 0x77d815de,…

user1908929
- 9
- 1
0
votes
1 answer
Unhandled exception type IOEsxception using ApacheCommnonsIO's method
I am trying to use copyDirectory() method from ApacheCommnonsIO package.
My code is:
First Class
import java.io.*;
import org.apache.commons.io.FileUtils;
public class ClassN1{
public static methodThatUsesCPDIRMethod(){
String src =…
user1543051
0
votes
1 answer
Unhandled handle exception?
I have a quandary regarding C++ and .Net/WinForms. I have code written to launch a background worker to check user input against a web server. The code is as follows:
try {
loginworker->RunWorkerAsync();
}
…

Collin Biedenkapp
- 491
- 4
- 22
0
votes
2 answers
NullReferenceException was unhandled #2
I was following this video: http://www.youtube.com/watch?v=Y63vq_tcTGk and at 8:20 he types
ds.Add(a);
show_diem();
however an error comes up when I do ds.Add(a);
I'm new to this so I'm still unsure of what ds is? Can it be anything? He…

user1336868
- 109
- 9
-1
votes
1 answer
OutOfMemoryException, Result of Loop/While?
I'm working on a project in C#, for which one of the questions is to make a program that receives a Stack and returns a new Stack with the digits that appear in that stack (every digit that appears will be in the new stack only once).
I made this…

RKei
- 11
- 4
-1
votes
1 answer
throw new OwnExceptionClass lets program crash
I have a function with following code:
if (!File::exists(i_filename)) throw new FileNotFoundException(i_filename);
My FileNotFoundException looks like this
.h
#pragma once
#include
#include
class FileNotFoundException :…
user3874443
-1
votes
1 answer
VB.NET System.Argument Exception
i'm new in vb .net programming, I've been encounter the following error when I'm trying to connect my form button to MySql database that:
An unhandled exception of type 'System.ArgumentException' occurred in System.Data.dll
Additional information:…

kymb
- 47
- 3
- 9
-1
votes
1 answer
Binary Search Tree Contains Function
I am trying to write a "contains" function for a binary search tree. I receive the following error at compile "Unhandled exception at 0x77291CB3 (ntdll.dll) in BST.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x001E2FFC)." The following…

Suede
- 416
- 2
- 5
- 16
-1
votes
1 answer
'NullReferenceException was unhandled' in C#
I am having a nullreferenceexception error in my code in this line:
public bool BoundingVolumeIsInView(BoundingSphere sphere)
{
**return (Frustum.Contains(sphere) != ContainmentType.Disjoint);**
}
Please tell me what i am doing…

Nate
- 41
- 1