Tagged Questions

2
votes
2answers
30 views

Unit Test for Exceptions Message

Is there a simple (Attribute-driven) way to have the following test fail on the message of the exception. [TestMethod()] [ExpectedException(typeof(ArgumentException))] public void …
3
votes
2answers
85 views

When an operation needs to pass more than just the result, do you tuple/throw/or getContextual?

I’m trying to refactor some “sending out an email” code by dividing the steps (validate, attach related content, format, send) into separate classes that can be more easily tested, …
1
vote
1answer
20 views

Why does SerializationInfo not have TryGetValue methods?

When implementing the ISerializable interface in C#, we provide a constructor which takes a SerializationInfo object, and then queries it with various GetInt32, GetObject etc. meth …
2
votes
8answers
110 views

Why do many languages treat Exception-objects as first-class citizens?

When we get an objects that is actually are exceptions, we can do with them anything that we can do with ordinar objects in our language. We can pass them as an argument, we can st …
0
votes
4answers
15 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 …
3
votes
5answers
63 views

Visual Studio debugging - ignore exception in one place while breaking at it elsewhere?

I have some code which generates a large quantity of ArgumentExceptions on one particular line (which is in a different developer's code, so I can't just change it), which are then …
0
votes
1answer
17 views

Exceptions and IDispatchMessageInspector

I'm using IDispatchMessageInspector to inspect request/response messages in my WCF service and log some data to our logging database. I also have a custom error handler which catch …
3
votes
3answers
62 views

Checking arguments in numerical python code

I find myself writing the same argument checking code all the time for number-crunching: def myfun(a, b): if a < 0: raise ValueError('a cannot be < 0 (was a=%s)' …
7
votes
5answers
182 views

Python: How can I know which exceptions might be thrown from a method call

Is there a way knowing (at coding time) which exceptions to expect when executing python code? I end up catching the base Exception class 90% of the time since I don't know which …
6
votes
3answers
213 views

Silent failures in C#, seemingly unhandled exceptions that does not crash the program

hi, have no idea what didn't you understand here: http://stackoverflow.com/questions/1583124/what-is-the-origin-or-the-reason-or-silent-failures-closed but i'm sorry anyway. i'll …
1
vote
5answers
96 views

ClassCastException when eclipse “fixed” my code

I get a ClassCastException when eclipse suggested that my code should be like that.. I have a class named Kort. ArrayList<Kort> kort = new ArrayList<Kort>(); then I …
2
votes
2answers
126 views

Custom Exceptions in C++

Hi, I've been trying to make some custom exception classes for a C++ library I'm working on. These custom exceptions capture extra info, such as file,line number,etc, needed for de …
3
votes
6answers
147 views

.NET Throwing Custom Exceptions

Can anyone shed some light on the pros and cons of throwing custom exceptions (which inherit from System.Exception), or the proper way to use them? I'm already aware of the when/w …
0
votes
2answers
48 views

Visual Studio Just-In-Time Debugging Annoyances

Hi, I have a solution comprising of about 6 projects, and when I debug on one machine, any un-handled exceptions that occur cause the environment to break at the point that excep …
2
votes
3answers
148 views

Java: Exceptions as control flow?

I've heard that using exceptions for control flow is bad practice. What do you think of this? public static findStringMatch(g0, g1) { int g0Left = -1; int g0Right = -1; …

1 2 3 4 next
15 30 50 per page