10
votes
7answers
371 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
}
which …
-5
votes
4answers
176 views
What happens in a try-finally block with no catch when an exception is thrown?
What happens when an exception is thrown and you I have try-finally structure (without catch)
What does this do?
.
public class Bicycle{
private int cadence;
private int gear;
private int …
0
votes
10answers
276 views
How to explicitly pass a program flow into the finally block in C#?
Hi guys.
In Delphi I could do something like this:
try
if not DoSomething then
Exit;
if not DoSomething2 then
Exit;
if not DoSomething3 then
Exit;
finally
DoSomethingElse;
end;
…
4
votes
7answers
1k 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
{
…
2
votes
10answers
205 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.
…
6
votes
5answers
250 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 …
30
votes
19answers
3k 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;
}
…
15
votes
16answers
1k 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?
1
vote
1answer
653 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
12answers
663 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, …
0
votes
6answers
472 views
Throw Exception VS Return Error within a Try,Catch,Finally
I'm pretty sure I already know the answer, but I'm still curious what the opinion is on handling an error within a Try,Catch,Finally block -- but when you're repeating yourself.
BTW - I'm not talking …
2
votes
1answer
101 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 …
