vote up 11 vote down star

What exception should I throw if I encounter an illegal state - for instance, an initialization method that should only be called once being called a second time? I don't really see any built-in exception that makes sense. This seems like something that should be in the framework - am I not poking in the right spot?

flag

67% accept rate

2 Answers

vote up 21 vote down check

InvalidOperationException maybe?

The exception that is thrown when a method call is invalid for the object's current state.

link|flag
More and more people should use InvalidOperationException instead of creating new ones. – JaredPar Nov 3 '08 at 20:22
Thanks! I knew there had to be something. – Chris Marasti-Georg Nov 3 '08 at 20:24
True, or at least derive from it so that catching InvalidOperationException also catches the derived one. Look at the Exceptions that derive from IOE (bottom of the MSDN) to see when it could make sense to roll your own. – Michael Stum Nov 3 '08 at 20:25
Not the most obvious name. – James McMahon Dec 3 '08 at 14:23
it depends. You are trying to perform an Invalid Operation after all, but there are many ways to name it. – Michael Stum Dec 3 '08 at 15:08
vote up 1 vote down

If at all I'd say System.InvalidProgramException get nearest to what you want. What's wrong with throwing a custom exception?

link|flag
IPE: "The exception that is thrown when a program contains invalid Microsoft intermediate language (MSIL) or metadata. Generally this indicates a bug in the compiler that generated the program.". Using Standard Exceptions creates consistency around the framework and third party apps. – Michael Stum Nov 3 '08 at 20:29
There is nothing wrong with custom exceptions if there is nothing in the framework to support your case. I could write a custom ArrayList, but why would I? – Chris Marasti-Georg Nov 3 '08 at 20:31
ok, like pYrania I don't get either why do you think this is so important? You have to write SOME code to implement ArrayList, but this cannot be compared to create a custom exception... – botismarius Nov 3 '08 at 20:59
The point is that you should not duplicate existing functionality. If I throw a custom exception, that is another thing that a programmer using my library has to learn. If I follow the conventions of the framework, I allow them to leverage their existing knowledge. – Chris Marasti-Georg Nov 3 '08 at 21:08
Yes, but nevertheless you should write a documentation for your library. Giving that, for a user it shouldn't matter if the exception you throw is Exception1 or Exception2. – botismarius Nov 4 '08 at 8:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.