0
votes
2answers
19 views
How to Catch Exceptions in WPF when Calling a WCF Sevive
How to Catch Exceptions in WPF when Calling a WCF Sevive
1
vote
2answers
52 views
Implementing python exceptions
I'm having some problems implementing an exception system in my program.
I found somewhere the following piece of code that I am trying to use for my program:
class …
1
vote
4answers
161 views
Avoid slicing of exception types (C++)
I am designing an exception hierarchy in C++ for my library. The "hierarchy" is 4 classes derived from std::runtime_error. I would like to avoid the slicing problem for the exception classes so made …
0
votes
1answer
20 views
Exceptions and Linq to Entities
I have a tough question to ask so please bier with me.
In this code below, this works because the programmer was interested in projecting only the specific errors caused by the physical data-layer to …
2
votes
8answers
117 views
C# API Development Exception handling
Is there a best-practice or industry standard for throwing exceptions from a toolkit API?
Should the user facing methods catch and wrap up Exception in some sort of CustomException so that users only …
1
vote
8answers
97 views
The right time to handle all exceptions
I've done a few projects so far, and i've noticed that every single one i've written entirely without any exception handling, then at the end i do a lot of tests and handle them all.
is it right? i …
0
votes
3answers
61 views
exceptions across module boundaries in C++/CLI
Item 62 of Sutter and Alexandrescu's book "C++ Coding Standards" is "Don’t allow exceptions to propagate across module boundaries." Should we follow the same rule in C++/CLI?
1
vote
7answers
181 views
Do potential exceptions carry an overhead?
Will a piece of code that potentially throws an exception have a degraded performance compared a similar code that doesn't, when the exception isn't thrown?
2
votes
7answers
97 views
What line(s) this code might throw a “Index was outside the bounds of the array” exception?
A little background on this error: The customer getting this error message in their log file and support hasn't been able to reproduce it yet. So I'm reviewing the code trying to determine what may …
0
votes
0answers
14 views
Can I make AASM run a specific method on event fail?
Is there a nice way to tell AASM that if an exception is raised while processing any assm_event I want that error to be caught by a specific block of code?
eg currently I do something like
…
0
votes
1answer
34 views
PHP SimpleTest - Handling Exceptions
Hi,
I have a few simple classes used in a forum application. I'm trying to run some tests using SimpleTest, but I'm having problems with exceptions.
I have a section of code which generates a custom …
3
votes
4answers
57 views
How do you catch a thrown soap exception from a web service?
I throw a few soap exceptions in my web service successfully. I would like to catch the exceptions and access the string and ClientFaultCode that are called with the exception. Here is an example of …
1
vote
3answers
120 views
How to get rid of exceptions thrown by the .NET framework
In a recent project I'm using a lot of databinding and xml-serialization. I'm using C#/VS2008 and have downloaded symbol information for the .NET framework to help me when debugging.
The app I'm …
0
votes
3answers
19 views
ASP.NET Exception Handling
I'm working on a traditional ASP.NET application where I'm making a WCF call to perform some operations.
The question is, should I put a try catch around the WCF call and display the error details at …
5
votes
8answers
203 views
Java Exceptions, What to catch and what not to?
I keep getting the dreaded java.something.someException errors while running my java app. and I don't seem to be getting the hang of what exceptions to handle and what not to?
When I read the api docs …
