An exception is a rarely occurring (exceptional!) condition that requires deviation from the program's normal flow. Normally, an exception should not result in total failure, but instead be attended by an exception handler. Exception handling is a built-in construct in many programming languages. ...
0
votes
0answers
3 views
Boost exceptions lead to stack pointer corruption (Run-Time Check Failure #0 …)
In an small project i am using several boost packages (asio, property_tree, filesystem, etc.) and i had to notice, that everything works fine, until an exception gets thrown somewhere in the boost ...
0
votes
0answers
11 views
Application.Startup path throws security exception?
I have this really old app (that I was running in win XP, made in VS 2008). It was running fine until today I converted it to VS 2010 and ran it in my Win 7.
The start up code works like this...
...
0
votes
1answer
7 views
Cassandra frequent read time out errors
I am new to cassandra just knows basics of it. I am facing frequent exceptions in cassandra. I'm using the thrift API single node cassandra. Mainly I am doing writes but those involves existing check.
...
-1
votes
0answers
7 views
libc++abi.dylib: terminate called throwing an exception Error during exequte imagepath
if (indexPath.row == 0) {
NSString *imagename= [Obj_appDelegate.Person_Update_dic objectForKey:@"Image"];
NSLog(@"image name --> %@",imagename);
imagePath = ...
0
votes
0answers
2 views
Eclipse is Throwing Connection timed out: connect Exception
Getting AxisFault exception While trying to run java a program.Please Help on this
Thanks in Advance
org.apache.axis2.AxisFault: Connection timed out: connect
at ...
0
votes
1answer
34 views
Understanding the ActionScript API - can this statement throw an exception?
I want to know whether I should wrap the following statement in a try catch block:
var newFile:File = File.applicationStorageDirectory.resolvePath(fileName);
If I look at the API Reference for ...
0
votes
0answers
21 views
Unable to close a streamwriter and reopen to append data
I created a little class in order to create logs.
This class use streamwriter functions in order to do this.
I write a log, and after closed the log, i would like to re-open after, in order to append ...
0
votes
0answers
9 views
DES Serialization Exception
I am using Visual Studio 2012 Ultimate and am having some trouble deserializing an object with DES cryptography.
I am getting an exception that says "Bad Data." in the DeserializeDESObjectFromFile ...
-1
votes
4answers
23 views
Ignoring Exceptions in Object Oriented Programming
In some applications, I came across some lines of code which deliberately eats the exceptions. In my application the benefit of doing this is - To ignore the exception and just continue with the ...
0
votes
1answer
15 views
Only seeing main in xDebug
I'm debugging a huge and messy PHP codebase.
The application currently misbehaves and redirects all traffic to the login screen because it seems unable to start sessions.
I traced such a scenario ...
1
vote
3answers
29 views
Handling exceptions from a method that could fire multiple exceptions
I have a API class using the MemoryStream and GZipStream classes to compress and decompress a string to a byte array.
Using these two classes a number of exceptions may be throws and I was wondering ...
0
votes
2answers
15 views
Hibernate Annotations together with EntityManager
I've created a Jar module with a hibernate dependency of
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
...
-3
votes
2answers
32 views
How to use chained exceptions [on hold]
In my application I have never used chained exception. But I am really looking forward to use it as I believe it can make my code better. But being new to it can someone provide me with some example ...
0
votes
0answers
28 views
dropdownlist list populated on client throws object reference not set to
I have a dropdownlist that is populated on client, based on the value of another dropdownlist. Specifically the values in question are years. I have one dropdownlist that have all allowed years from ...
0
votes
0answers
10 views
Entity Framework doesn't create Database, Exceptions in debug
I got a really annoying problem. For some reason EF stopped generating my database.
I used this tutorial: ...