Tagged Questions

A common usage of catch and finally together is to obtain and use resources in a try block, deal with exceptional circumstances in a catch block, and release the resources in the finally block.

learn more… | top users | synonyms

129
votes
21answers
35k views

In Java, does return trump finally?

If I have a try/catch block with returns inside it, will the finally block be called? For example: try { something(); return success; } catch (Exception e) { return ...
45
votes
19answers
9k views

Why is try {…} finally {…} good; try {…} catch{} bad?

I have seen people say that it is bad form to use catch with no arguments, especially if that catch doesn't do anything: StreamReader reader=new StreamReader("myfile.txt"); try { int i = 5 / 0; } ...
27
votes
6answers
8k views

Returning from a finally block in Java

I was surprised recently to find that it's possible to have a return statement in a finally block in Java. It seems like lots of people think it's a bad thing to do as described in 'Don't return in a ...
22
votes
7answers
7k views

Is it bad practice to return from within a try catch finally block

So I came across some code this morning that looked like this: try { x = SomeThingDangerous(); return x; } catch (Exception ex) { throw new DangerousException(ex); } finally { ...
20
votes
15answers
2k views

What is the point of the finally block?

Syntax aside, what is the difference between try { } catch() { } finally { x = 3; } and try { } catch() { } x = 3; edit: in .NET 2.0? so try { throw something maybe x = 3 } ...
18
votes
7answers
3k views

Try-catch-finally and then again a try catch

I have often come across situations like :- try{ ... stmts ... } catch(Exception ex) { ... stmts ... } finally { connection.close // throws an exception } ...
15
votes
8answers
1k views

Why does this “finally” execute?

If you run the code below it actually executes the finally after every call to the goto: int i = 0; Found: i++; try { throw new Exception(); } catch (Exception) ...
14
votes
4answers
398 views

does return “happen after” finally

I am trying to convince myself that actions taken in the finally clause happen-before the function return (in the memory consistency sense). From the JVM spec, it is clear that within a thread, ...
12
votes
5answers
3k views

Using statement and try-catch()-finally repetition?

The using(...) statement is syntactic sugar for try{} finally {}. But if I then have a using statement like below: using (FileStream fs = File.Open(path)) { } Now I want to catch the exceptions ...
11
votes
5answers
260 views

Is this `try..catch..finally` redundant?

public Foo doDangerousStuff() throws Exception { try { dangerousMethod(); return new Foo(); } catch (Exception e) { throw e; } finally { ...
11
votes
7answers
494 views

When to use and when not to use Try Catch Finally

I am creating asp.net web apps in .net 3.5 and I wanted to know when to use and when not to use Try Catch Finally blocks? In particular, a majority of my try catch's are wrapped around executing ...
11
votes
13answers
5k views

Why use Finally in Try … Catch

I see that the Finally in try .. Catch will execute allways after any parts of the execution of the try catch block. Is it any different to just skip the Finally section and just run it after, ...
8
votes
2answers
9k views

@try - catch block in Objective-c problem

Why @try block do not work? It crash the app, but it was supposed to be catch by the @try block NSString* test = [NSString stringWithString:@"ss"]; @try { [test characterAtIndex:6]; } ...
7
votes
9answers
592 views

how to use finally

I never properly understood the use of the finally statement. Can anyone tell me what the difference is between: try { a; block; off; statements; } catch (Exception e) { handle; ...
7
votes
10answers
1k views

Use case for try-catch-finally with both catch and finally

I understand how try-catch works and how try-finally works, but I find myself using those (usually) in two completely different scenarios: try-finally (or using in C# and VB) is mostly used around ...
7
votes
4answers
3k views

Using Exception Handling versus NSError in Cocoa Apps

Hey all. I've been reading up on Apple's suggestions for when/where/how to use NSError versus @try/@catch/@finally. Essentially, my impression is that Apple thinks it best to avoid the use of ...
6
votes
2answers
549 views

does code in finally get run after a return in objective-c?

consider the following code: @try { if (something.notvalid) { return; } // do something else } @catch (NSException *ex) { // handle exception } @finally { NSLog(@"finally!"); } if ...
5
votes
2answers
407 views

Python: multiprocessing.map: If one thread raises an exception, why aren't other threads' finally blocks called?

My understanding is that finally clauses must *always* be executed if the try has been entered. import random from multiprocessing import Pool from time import sleep def Process(x): try: ...
5
votes
2answers
251 views

finally block in c# [closed]

Possible Duplicate: Finally Block Not Running?? I have a question regarding finally block in c#. I wrote a small sample code: public class MyType { public void foo() { try ...
4
votes
4answers
67 views

Unit testing finally blocks in JAVA

While reviewing my code coverage i noticed a lot of Unit tests fail to check finally blocks which try to close open InputStreams in finally blocks. One Example excerpt is: try { f = new ...
4
votes
4answers
189 views

Try-catch-finally in java

In Java, will the finally block not get executed if we insert a return statement inside the try block of a try-catch-finally ?
4
votes
4answers
194 views

break statement in finally clause java

public class FinallyTest { static int i=0; public static void main(String a[]){ while(true){ try{ i=i+1; return; }finally{ ...
4
votes
5answers
353 views

How can I break from a try/catch block without throwing an exception in java

I need a way to break from the middle of try/catch block without throwing an exception. Something that is similar to the break and continue in for loops. Is this possible? I have been getting weird ...
4
votes
8answers
256 views

throw-catch logic

try { try { throw new Exception("From Try"); } catch { throw new Exception("From Catch"); } finally { throw new Exception("From Finally"); } ...
4
votes
6answers
333 views

python try/finally for flow control

I'm sure this concept has come up before but I can't find a good, simple answer. Is using try/finally a bad way to handle functions with multiple returns? For example I have try: if x: ...
4
votes
3answers
228 views

How should I replicate the functionality of C#'s 'using' statement in Java?

I'm converting some C# code to Java and it contains the using statement. How should I replicate this functionality in Java? I was going to use a try, catch, finally block but I thought I'd check with ...
4
votes
1answer
12k views

How does Java's System.exit() work with try/catch/finally blocks?

I'm aware of headaches that involve returning in try/catch/finally blocks - cases where the return in the finally is always the return for the method, even if a return in a try or catch block should ...
4
votes
10answers
337 views

Formatting of hard to read try..catch..finally blocks?

How are you formatting your try..catch.finally blocks? Especially when only wrapping it around a small amount of code, it blows everything and makes code pretty unreadable and unsightly in my opinion. ...
3
votes
4answers
91 views

Uncaught RuntimeException and finally clause: which comes first?

A RuntimeException is thrown in try block without being caught, while the finally clause invokes System.exit(). public static void main(String[] args) { try { ...
3
votes
4answers
130 views

try-catch-finally idiom in smalltalk

How do you realize a try-catch-finally idiom in smalltalk? I see there is on:do: and ensure:, but there isn't on:do:ensure:. I must be missing something.
3
votes
1answer
59 views

Cleaning up an object only if an exception is raised

I need to have a file deleted if not all the operations that must be done on it were successful (that is, if an exception is raised). It could have been as simple as using except:, deleting the file ...
3
votes
2answers
206 views

Yield return from a try/catch block

As Eric Lippert described in this article, yield return is not allowed within try/catch clauses. Is there a nice way I could get something like this, without having to write my own IEnumerator by ...
3
votes
5answers
126 views

try-catch-finally vs abstract methods

in our system we have an abstract class, let's call it BasicAction, which contains several abstract methods. Most important of them is called execute. It handles the requests from the JSP pages. The ...
3
votes
4answers
351 views

Return in the Finally Block… Why not?

As MSDN mentions: The code in a Finally block runs after a Return statement in a Try or Catch block is encountered, but before that Return statement executes. In this situation, a Return ...
3
votes
7answers
2k views

Java Try Catch Finally blocks without Catch

I'm reviewing some new code. The program has a try and a finally block only. Since the catch block is excluded, how does the try block work if it encounters an exception or anything throwable? Does ...
3
votes
2answers
1k views

Python try except finally

It looks like I don't quite have the hang of Exception handling yet. I'm at a loss :( The following code sometimes returns this error: File "applications/pingback/modules/plugin_h_pingback.py", line ...
3
votes
4answers
312 views

Returning from function through catch block, what happens to finally block?

I've try catch finally block and if some exception occurs I'll return from the catch block, so finally block is still executed, if so, when? Before return or after return? Is this the right practice? ...
3
votes
5answers
614 views

Throw exception in try block

try { if (isFileDownloaded) //do stuff else throw new CustomException() } catch (Exception e) { // something went wrong save error to log ...
2
votes
1answer
58 views

Reliability of corrupted state exception handling

I'm currently looking into reliability features and exception handling of C# / .NET These are especially the HandleProcessCorruptedStateExceptions attribute and CER s with PrepareConstrainedRegions. ...
2
votes
6answers
57 views

Why won't my “finally” run?

I assume I'm missing something really trivial here but for reason it's not obvious to me. I've always assumed that "finally" always executes, regardless of an exception or not. Anyway, this code ...
2
votes
5answers
135 views

Does ThreadAbortException still enforce executing the code in finally (try/catch) section?

I have a System.Timers.Timer timer which it's AutoReset is set to false. I use a try/finally to insure I Start the timer at the end of it's callback (I use the timer this way to prevent overlapping of ...
2
votes
5answers
60 views

In languages with try-catch-finally, is it somehow possible to perform an action for all exception-handlers?

Is there any language that supports something like the below construct, or is there a good way to achieve this using the ubiquitous try-catch-finally? try { } catch(Exception1 e) { .... } ...
2
votes
3answers
202 views

Java finally block question

Is there a built-in way to determine in a finally block whether or not you just came out of a catch block? I know this can easily be done with a variable like below, but I was just curious if there ...
2
votes
7answers
195 views

Exception handling placement - C#

I've decided to remove some of the using statements in my code so I can catch specific exceptions and handle the disposing of resources manually. I have refactored some of the code to make it more ...
2
votes
4answers
206 views

Point of try catch finally blocks?

What is the difference between using finally void ReadFile(int index) { // To run this code, substitute a valid path from your local machine string path = @"c:\users\public\test.txt"; ...
2
votes
7answers
292 views

C#: why bother having a 'finally' clause? [closed]

Possible Duplicate: Why use finally in C#? In C#, what is the point of having a finally clause? eg. try { // do something } catch (Exception exc) { // do ...
2
votes
2answers
205 views

Ensure teardown runs in Test::Unit::TestCase?

I'm using Test::Unit::TestCase to write some unit tests. Currently, I have a setup function that moves and modifies some fixture files and folders on disk. (This is a necessary evil at the moment.) ...
2
votes
1answer
198 views

Claim resources/memory from thread single threaded apartment thread

I am using following single threaded appartment. I am unable to reclaim memory/other resources from thread object. Actullay I want to wrap my thread in try catch and fianlly block. try and catch are ...
1
vote
3answers
34 views

Close file in finally block doesn't work

try { FileReader fr = new FileReader(file); BufferedReader br = new BufferedReader(fr); String line = null; } catch (FileNotFoundException fnf) { fnf.printStackTrace(); } finally { ...
1
vote
5answers
144 views

Throw exception from Called function to the Caller Function's Catch Block

internal static string ReadCSVFile(string filePath) { try { ... ... } catch(FileNotFoundException ex) { throw ex; } catch(Exception ex) { ...

1 2