vote up 0 vote down star
1

When I design a class I often have trouble deciding if I should throw an exception or have 2 func with the 2nd returning an err value. In the case of 2 functions how should I name the exception and non exception method?

For example if I wrote a class that decompresses a stream and the stream had errors or incomplete I would throw an exception. However what if the app is trying to recover data from the stream and excepts an error? It would want a return value instead? So how should I name the 2nd function?

Or should I not have both an exception method and a nonexception method?

flag

39% accept rate
This does not seem to me to be particularly language-agnostic. In the extreme case, if you're using C, you don't throw exceptions. In C++, you have to design for exception safety anyway. In other languages, exceptions may be available but not mandatory. – David Thornley Oct 16 at 14:26

5 Answers

vote up 2 vote down check

Or should I not have both an exception method and a nonexception method?

That. Unless you really have time to burn maintaining two separate but mostly-identical methods.

If you really need to allow for clients that won't consider errors exceptional, then just indicate them with a return value and be done with it... Otherwise, just write the exception-throwing version and let the odd error-eating client handle the exception.

link|flag
I would have the exception throwing call the return val method and NOT have repeat code. But i agree with you. I'll write it to throw an exception then change it to return value if i need to. – acidzombie24 Oct 16 at 15:15
vote up 2 vote down

It depends on the language, but...

In my opinion, two versions of each potentially failing method imposes too high a cognitive burden on the API user, and too high a burden on the API maintainer. My personal preference is for exceptions, since that's fewer parameters to remember the order of.

link|flag
vote up 1 vote down

I believe that you should try to use exceptions even if you're not going to exit program in some cases. You just need to create a specific exception type for your errors. And catch only them when you need to do some spefic logic. All other exceptions will go to upper level of your code. For example you've created function which throws exception on any error. And you don't want to exit program if user specified incorrect file name. Here is how it can look:

## this is top level try/catch block 
try {
    ## your main code is here
    ...
    ## somewhere deep in your code
    try {
        ## we trying to open file specified by user
    }
    catch (FileNotFoundException) {
        ## we are not going to exit on this error
        ## let's just show a user an error message 
        ## and try to ask different file to open
    }

} catch (Exception) {
    ## catch all exceptions here 
    ## the best thing we can do here is save exception to log and quit }
}

We just need to create hierarchy of exceptions (if your language allows it):

Exception <-- MoreSpecificException

This approach is used in Java

link|flag
1  
OTOH, if the code calling these routines will be immediately catching these exceptions most of the time, then it's quite a bit more verbose than the equivalent return-value code. And... not really exceptional! – Shog9 Oct 16 at 14:05
You can always make another function which will just convert exception into return code. But it should be done carefull. The biggest problem with error codes is that nobody checks them, and if they are checked you code can became very complicated. – Ivan Nevostruev Oct 16 at 14:14
1  
The original question is not bound to any specific language. The advice to "you should try to use exceptions even if you're not going to exit program in some cases" is certainly true and appropriate in some languages (Java, C#), but is definitely wrong in others (e.g. Objective-C). – harms Oct 16 at 14:19
I think the question named "Designing a class with **Exceptions**" doesn't make sense if target language don't have exception support – Ivan Nevostruev Oct 16 at 14:26
@Ivan: well, if you're providing information the caller needs then they can't really ignore it. For instance, in the OP's stream-reading example, a return value could indicate the bytes read: without that, the caller cannot know how much valid data was returned. Contrast that with a routine that throws an exception on EOF: the caller would now be unable to ever use this routine without exception handling in place, even though EOF is hardly exceptional... – Shog9 Oct 16 at 14:31
show 4 more comments
vote up 1 vote down

Exceptions should normally be used for exceptional conditions, whatever they may be. Being unable to decompress a file is probably an exceptional condition (unless, for example, you're writing a program to scan for badly compressed files). Bad data may or may not be exceptional.

If you've got a class decompressing a stream, then what it should do is decompress the stream, and not try to interpret its contents. Another class should use the first class to get decompressed input, and do the interpretation. That gives you separation of functionality, and good cohesion. Avoid classes where you're tempted to put an "And" in their names: "DecompressAndParseInput" is a bad class name.

Given two classes, there's no particular reason why you have to use the same error-reporting method for both. The decompressor could throw, and the parser could return an error code.

link|flag
vote up 0 vote down

I would only throw an exception on the decompression function if the results were not usable. If they were usable, return the results and then the function that reads those results can throw an exception instead. IE

try
{
    results = decompress(file); // only throws exceptions on non-usable files
} catch (FileNotFoundException) {
    // file was not usable, can't recover anything, insert nuclear error handling here
}
try
{
    read(results);
} catch (ErrorThatIsRecoverableException) {
    partialRead(results);
}

so read() is the function you call on normal data, partialRead is the function that handles trying to recover screwed-up-but-still-usable data. And of course, you don't necessarily need exceptions or separate functions at all- you could do the error handling all within the read() function.

link|flag

Your Answer

Get an OpenID
or

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