Tagged Questions
try-catch is a syntactic construct for catching exceptions raised by a code section
275
votes
4answers
8k views
Try-catch speeding up my code?
I wrote some code for testing the impact of try-catch, but seeing some surprising results.
static void Main(string[] args)
{
Thread.CurrentThread.Priority = ThreadPriority.Highest;
...
153
votes
10answers
5k views
Why should I not wrap every block in “try”-“catch”?
I have always been of the belief that if a method can throw an exception then it is reckless not to protect this call with a meaningful try block.
I just posted 'You should ALWAYS wrap calls that can ...
81
votes
13answers
3k views
Pattern to avoid nested try catch blocks?
Consider a situation where I have three (or more) ways of performing a calculation, each of which can fail with an exception. In order to attempt each calculation until we find one that succeeds, I ...
75
votes
10answers
5k views
Do try/catch blocks hurt performance when exceptions are not thrown?
During a code review with a Microsoft employee we came across a large section of code inside a try{} block. She and an IT representative suggested this can have effects on performance of the code. In ...
67
votes
12answers
15k views
Why catch and rethrow Exception in C#?
Folks, forgive me, I'm pretty much a raw prawn when it comes to C#, and .NET generally... though I've been a professional programmer for 10 years.
I'm looking at this article: ...
58
votes
18answers
12k views
Should try…catch go inside or outside a loop?
I have a loop that looks something like this:
for(int i = 0; i < max; i++) {
String myString = ...;
float myNum = Float.parseFloat(myString);
myFloats[i] = myNum;
}
This is the main ...
47
votes
1answer
25k views
powershell 2.0 try catch how to access the exception
This is try catch in powershell 2.0
$urls = "http://www.google.com", "http://none.greenjump.nl", "http://www.nu.nl"
$wc = New-Object System.Net.WebClient
foreach($url in $urls)
{
try
{
...
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;
}
...
40
votes
18answers
5k views
Why are empty catch blocks a bad idea?
I've just seen a question on try-catch, which people (including Jon Skeet) say empty catch blocks are a really bad idea? Why this? Is there no situation where an empty catch is not a wrong design ...
33
votes
10answers
10k views
throws Exception in finally blocks
Is there an elegant way to handle exceptions that are thrown in the a finally block?
For example:
try {
// Use the resource.
}
catch( Exception ex ) {
// Problem with the resource.
}
finally {
...
33
votes
7answers
4k views
How do exceptions work (behind the scenes) in c++
I keep seeing people say that exceptions are slow but I never see any proof. So instead of asking if they are I will ask how do exceptions work behind the scene so I can make a decisions of when to ...
29
votes
4answers
716 views
Difference between try-catch syntax for function
I came across this syntax recently for try-catch for function.
struct A
{
int a;
A (int i) : a(i) // normal syntax
{
try {}
catch(...) {}
}
A () // something different
try : ...
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
{
...
21
votes
5answers
2k views
C++ try/throw/catch => machine code
Mentally, I've always wondered how try/throw/catch looks behind the scenes, when the C++ compiles translates it to assembler. But since I never use it, I never got around to checking it out (some ...
20
votes
4answers
2k views
Curious C# using statement expansion
I've run ildasm to find that this:
using(Simple simp = new Simple())
{
Console.WriteLine("here");
}
generates IL code that is equivalent to this:
Simple simp = new ...
19
votes
7answers
10k views
Performance of try-catch in php
What kind of performance implications are there to consider when using try-catch statements in php 5?
I've read some old and seemingly conflicting information on this subject on the web before. A ...
18
votes
7answers
3k views
Will code in a Finally statement fire if I return a value in a Try block?
I'm reviewing some code for a friend and say that he was using a return statement inside of a try-finally block. Does the code in the Finally section still fire even though the rest of the try block ...
18
votes
4answers
21k views
Does Windows Powershell have a Try/Catch or other error handling mechanism?
In a script, when a command-let or other executable statement errors out, is there a try/catch type of mechanism to recover from these errors? I haven't run across one in the documentation.
17
votes
4answers
290 views
JavaScript catch parameter already defined
I'm trying to understand why I'm getting the following error, not how to work around it.
Passing the following code to JSLint or JSHint yields the error 'err' is already defined.
/*jslint white: ...
17
votes
10answers
7k views
C# catch a stack overflow exception
I got a recursive call to a methode that throw a stack overflow exception. The first call is surrounded by a try catch block but the exception is not caught.
Do the stack overflow exception behave ...
15
votes
8answers
1k views
ANSI C equivalent of try/catch?
I have some C code I'm working with, and I'm finding errors when the code is running but have little info about how to do a proper try/catch (as in C# or C++).
For instance in C++ I'd just do:
try{
...
15
votes
3answers
5k views
How to catch SqlException caused by deadlock?
From a .NET 3.5 / C# app, I would like to catch SqlException but only if it is caused by deadlocks on a SQL Server 2008 instance.
Typical error message is Transaction (Process ID 58) was deadlocked ...
15
votes
13answers
2k views
In C++ what are the benefits of using exceptions and try / catch instead of just returning an error code?
I've programmed C and C++ for a long time and so far I've never used exceptions and try / catch. What are the benefits of using that instead of just having functions return error codes?
14
votes
7answers
525 views
C# Compiler should give warning but doesn't?
Someone on my team tried fixing a 'variable not used' warning in an empty catch clause.
try { ... } catch (Exception ex) { }
-> gives a warning about ex not being used. So far, so good.
The fix ...
14
votes
9answers
2k views
Java io ugly try-finally block
Is there a not so ugly way of treat the close() exception to close both streams then:
InputStream in = new FileInputStream(inputFileName);
OutputStream out = new ...
14
votes
12answers
4k views
Catching java.lang.OutOfMemoryError?
Documentation for java.lang.Error says:
An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch
But as java.lang.Error is a ...
13
votes
2answers
1k views
Is try/catch around whole C# program possible?
A C# program is invoked by:
Application.Run (new formClass ());
I'd like to put a try/catch around the whole thing to trap any uncaught exceptions. When I put it around this Run method, exceptions ...
13
votes
5answers
21k views
Try catch statements in PHP
Hey everyone, Im quite new to programming so please be nice :)
I am currently experimenting with try-catch statements, I read the documentation on the php.net website and didn't find it all that ...
12
votes
5answers
406 views
But I don't _want_ to surround the statement with a try/catch block!
I'm writing a program that uses java.net.URLDecoder.decode(String value, String encoding). Apparently, this method might throw an UnsupportedEncodingException, which I get. But I'm just passing ...
12
votes
3answers
364 views
How do exceptions work (behind the scenes) in C#
Identical to "How do exceptions work (behind the scenes) in C++", but for C#.
I know that the steps below have to be performed when an exception is thrown.
Find the nearest handler for the ...
12
votes
9answers
978 views
How to free memory in try-catch blocks?
I have a simple question hopefully - how does one free memory which was allocated in the try block when the exception occurs? Consider the following code:
try
{
char *heap = new char [50];
...
12
votes
8answers
2k views
Difference between try-finally and try-catch
What's the difference between
try {
fooBar();
} finally {
barFoo();
}
and
try {
fooBar();
} catch(Throwable throwable) {
barFoo(throwable); // Does something with throwable, logs it, ...
12
votes
7answers
500 views
try-catch problem
Hey guys, I am a java newbie, my question is about try-catch blocks on a simple division by zero example. You see the first line of try? If I cast any of those two variables to the double the program ...
12
votes
5answers
2k views
catch exception by pointer in C++
I found that there are three ways to catch an exception, what are the differences?
1) catch by value;
2) catch by reference;
3) catch by pointer;
I only know that catch by value will invoke two ...
12
votes
11answers
1k views
Can you catch more than one type of exception with each block?
This question is close to what I want to do, but not quite there.
Is there a way to simplify the following code?
private bool ValidDirectory(string directory)
{
if (!Directory.Exists(directory))
...
12
votes
3answers
414 views
Can you really have a function/method without a body but just a try/catch block?
Note that this function does not have a "{" and "}" body. Just a try/catch block:
void func( void )
try
{
...
}
catch(...)
{
...
}
Is this intentionally part of C++, or is this a g++ ...
11
votes
2answers
198 views
What is the Java 7 try-with-resources bytecode equivalent using try-catch-finally?
I'm trying to understand how the new try-with-resources statement works by recreating it using regular try-catch-finally statements. Given the following test class using Java 7 try-with-resources:
...
11
votes
3answers
659 views
Why can't I use a Javascript function before it's definition inside a try block?
As discussed here, function definitions can be used before they're defined. But as soon as a section of code is wrapped in a try block, this ceases to be the case.
This displays "Hello world":
...
11
votes
6answers
453 views
Javascript: try/catch return statement
How a return statement inside a try/catch block works?
function example() {
try {
return true;
}
finally {
return false;
}
}
I'm expecting the output of this ...
11
votes
6answers
1k views
Call-stack for exceptions in C++
Today, in my C++ multi-platform code, I have a try-catch around every function. In every catch block I add the current function's name to the exception and throw it again, so that in the upmost catch ...
11
votes
5answers
603 views
Throws or try-catch
What is the general rule of thumb when deciding whether to add a throws clause to a method or using a try-catch?
From what I've read myself, the throws should be used when the caller has broken their ...
11
votes
5answers
2k views
Nested Try/Catch
Is having a nested Try/Catch a signal that you're not coding cleanly? I wonder because in my catch I'm calling another method and if that fails I get another runtime error so I'm tempted to wrap ...
11
votes
6answers
5k views
Nested try statements in python?
Is there a nicer way of doing the following:
try:
a.method1()
except AttributeError:
try:
a.method2()
except AttributeError:
try:
a.method3()
except ...
11
votes
10answers
6k views
Is there a preference for nested try/catch blocks?
One of the things that always bugs me about using Readers and Streams in Java is that the close() method can throw an exception. Since it's a good idea to put the close method in a finally block, that ...
10
votes
2answers
253 views
Are destructors called after a throw in C++?
I ran a sample program and indeed destructors for stack-allocated objects are called, but is this guaranteed by the standard?
10
votes
7answers
527 views
Determine if executing in finally block due to exception being thrown
Is it possible to determine if code is currently executing in the context of a finally handler as a result of an exception being thrown? I'm rather fond of using the IDisposable pattern to implement ...
10
votes
11answers
3k views
Does the C# “finally” block ALWAYS execute? [closed]
Possible Duplicate:
Will code in a Finally statement fire if I return a value in a Try block?
Consider the following code C# code. Does the "finally" block execute?
public void ...
10
votes
11answers
1k views
Try..Catch blocks always expensive? [closed]
Possible Duplicate:
Do try/catch blocks hurt performance when exceptions are not thrown?
Hey everyone,
Just a quick question about try..catch blocks. I've heard they're expensive to use and ...
10
votes
1answer
497 views
Why can I write a generic catch statement in C# that does nothing? [closed]
Possible Duplicate:
Why can’t I catch a generic exception in C#?
I have been reviewing and writing Circuit Breaker code recently. The following method compiles, but the catch block is ...
10
votes
14answers
2k views
Is there a favored idiom for mimicing Java's try/finally in C++?
Been doing Java for number of years so haven't been tracking C++. Has finally clause been added to C++ exception handling in the language definition?
Is there a favored idiom that mimics Java's ...