vote up 9 vote down star
2

Hi all, Is there an elegant code construct for handling exceptions that are thrown in the a cleanup code of a finally block?

(that might as well be executed after an exception?)

try{
   ...
}
catch( Exception ex ) {
...

}
finally {
      try{
         resource.close();
   }
   catch(Exception ex){
       ...
   }
}

How to avoid that inner try/catch in the finally block?

flag
I'm assuming this is C#, but you can wrap your resource in a "using" statement. This will call dispose method when the using scope is exited. – Charles Conway Jan 26 at 21:43

8 Answers

vote up 1 vote down

One solution, if the two Exceptions are two different classes

try {
    ...
    }
catch(package1.Exception err)
   {
    ...
   }
catch(package2.Exception err)
   {
   ...
   }
finally
  {
  }

But sometimes you cannot avoid this second try-catch. e.g. for closing a stream

InputStream in=null;
try
 {
 in= new FileInputStream("File.txt");
 (..)// do something that might throw an exception during the analysis of the file, e.g. a SQL error
 }
catch(SQLException err)
 {
 //handle exception
 }
finally
 {
 //at the end, we close the file
 if(in!=null) try { in.close();} catch(IOException err) { /* ignore */ }
 }
link|flag
In your case if you used a "using" statement, it should clean up the resource. – Charles Conway Jan 26 at 21:41
My bad, I'm assuming it's C#. – Charles Conway Jan 26 at 21:41
vote up 0 vote down

If you can you should test to avoid the error condition to begin with.

try{...}
catch(NullArgumentException nae){...}
finally
{
  //or if resource had some useful function that tells you its open use that
  if (resource != null) 
  {
      resource.Close();
      resource = null;//just to be explicit about it was closed
  }
}

Also you should probably only be catching exceptions that you can recover from, if you can't recover then let it propagate to the top level of your program. If you can't test for an error condition that you will have to surround your code with a try catch block like you already have done (although I would recommend still catching specific, expected errors).

link|flag
Testing error conditions is in general a good practice, simply because exceptions are expensive. – divo Jan 26 at 21:45
"Defensive Programming" is an outmoded paradigm. The bloated code which results from testing for all error conditions eventually causes more problems than it solves. TDD and handling exceptions is that modern approach IMHO – Joe Soul-bringer Jan 26 at 21:49
@Joe - I don't disagree you on testing for all error conditions, but sometimes it makes sense, especially in light of the difference (normally) in cost of a simple check to avoid the exception versus the exception itself. – confusedGeek Jan 26 at 21:56
-1 Here, resource.Close() can throw an exception. If you need to close additional resources, the exception would cause the function to return and they will remain open. That's the purpose of the second try/catch in the OP. – Outlaw Programmer Jan 26 at 22:14
pointless setting it to be =null – Egwor Jan 26 at 22:48
show 1 more comment
vote up 1 vote down

Why do you want to avoid the additional block? Since the finally block contains "normal" operations which may throw an exception AND you want the finally block to run completely you HAVE to catch exceptions.

If you don't expect the finally block to throw an exception and you don't know how to handle the exception anyway (you would just dump stack trace) let the exception bubble up the call stack (remove the try-catch from the finally block).

If you want to reduce typing you could implement a "global" outer try-catch block, which will catch all exceptions thrown in finally blocks:

try {
    try {
        ...
    } catch (Exception ex) {
        ...
    } finally {
        ...
    }

    try {
        ...
    } catch (Exception ex) {
        ...
    } finally {
        ...
    }

    try {
        ...
    } catch (Exception ex) {
        ...
    } finally {
        ...
    }
} catch (Exception ex) {
    ...
}
link|flag
-1 For this one, too. What if you're trying to close multiple resources in a single finally block? If closing the first resource fails, the others will remain open once the exception is thrown. – Outlaw Programmer Jan 26 at 22:16
This is why I told Paul that you HAVE to catch exceptions if you want to make sure the finally block completes. Please read the WHOLE answer! – Eduard Wirch Jan 26 at 22:18
vote up 0 vote down

You could refactor this into another method ...

public void RealDoSuff()
{
   try
   { DoStuff(); }
   catch
   { // resource.close failed or something really weird is going on 
     // like an OutOfMemoryException 
   }
}

private void DoStuff() 
{
  try 
  {}
  catch
  {
  }
  finally 
  {
    if (resource != null) 
    {
      resource.close(); 
    }
  }
}
link|flag
vote up 6 vote down

I usually do it like this:

try {
   ...
} catch( Exception ex ) {
    ...
} finally {
    closeQuietly(resource);
}

Elsewhere:

void closeQuietly(Resource resource) {
      try {
         if (resource != null) resource.close();
       } catch(Exception ex){
            log("Exception during Resource.close()", ex);
       }
}
link|flag
Yeap, I use a very similar idiom. But I don't create a function for that. – Oscar Reyes Jan 26 at 22:42
A function is handy if you need to use the idiom a few places in the same class. – Darron Jan 27 at 12:13
vote up 0 vote down

I usually do this:

MyResource r = null;
try { 
   // use resource
} finally {   
    if( r != null ) try { 
        r.close(); 
    } catch( ThatSpecificExceptionOnClose teoc ){}
}

Rationale: If I'm done with the resource and the only problem I have is closing it, there is not much I can do about it. It doesn't make sense either to kill the whole thread if I'm done with the resource anyway.

This is one of the cases when at least for me, it is safe to ignore that checked exception.

To this day I haven't had any problem using this idiom.

link|flag
I'd log it, just in case you find some leaks in the future. That way you'd know where they might (not) be coming from – Egwor Jan 26 at 22:49
@Egwor. I agree with you. This was just some quick smippet. I log it too and probaly use a catch is something could be done with the exception :) – Oscar Reyes Jan 27 at 5:13
vote up 2 vote down

I typically use one of the closeQuietly methods in org.apache.commons.io.IOUtils:

public static void closeQuietly(OutputStream output) {
    try {
        if (output != null) {
            output.close();
        }
    } catch (IOException ioe) {
        // ignore
    }
}
link|flag
You can make this method more general with Closeable public static void closeQuietly(Closeable closeable) { – Peter Lawrey Jan 27 at 7:01
Yes, Closeable is nice. It's a shame that many things (like JDBC resources) don't implement it. – Darron Jan 27 at 14:18
vote up 0 vote down
try {
    final Resource resource = acquire();
    try {
        use(resource);
    } finally {
        resource.release();
    }
} catch (ResourceException exx) {
    ... sensible code ...
}

Job done. No null tests. Single catch, include acquire and release exceptions. Of course you can use the Execute Around idiom and only have to write it once for each resource type.

link|flag
What if use(resource) throws Exception A and then resource.release() throws exception B? Exception A is lost... – Darron Jan 27 at 14:15

Your Answer

Get an OpenID
or

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