472,126 Members | 1,544 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,126 software developers and data experts.

C++: rethrow in exception handling

A
Hi,

I'm having some difficulty understanding the semantics of the rethrow
keyword. Consider the following code:

int main(){
try{
...
}
catch(SomeException &SE){
...
}
catch(...){
rethrow;
}
return 0;
}
What is the point of rethrowing the exception caught at catch(...)? Won't
this result in a endless cycle effect?
Regards,
A
Jul 22 '05 #1
5 10907
A wrote:
Hi,
hi
What is the point of rethrowing the exception caught at catch(...)? Won't
this result in a endless cycle effect?

no.

you can use it to do some cleaning before letting the exception reach
the next handler, as if you didn't caught it. in your example you'll let
the exception be trapped by the default handler which usually aborts you
app.
-----[ Domenico Andreoli, aka cavok
--[ http://filibusta.crema.unimi.it/~cavok/gpgkey.asc
---[ 3A0F 2F80 F79C 678A 8936 4FEE 0677 9033 A20E BC50

Jul 22 '05 #2
On Tue, 18 Nov 2003 21:35:03 +1030, "A" <A@iprimus.com.au> wrote:
Hi,

I'm having some difficulty understanding the semantics of the rethrow
keyword.
There is no rethrow keyword. I'm going to assume you mean throw.
Consider the following code:
int main(){
try{
...
}
catch(SomeException &SE){
...
}
catch(...){
rethrow;
Rather:
throw;
}
return 0;
}
What is the point of rethrowing the exception caught at catch(...)? Won't
this result in a endless cycle effect?


No, the throw above will just cause the program to terminate (since
the exception will propogate out of main. throw; is used when you want
to do a bit of clean up in the current scope, and then let the
exception propogate up. However, it should be used sparingly - RAII is
a much better technique to handle exception cleanup.

Tom
Jul 22 '05 #3
A

"tom_usenet" <to********@hotmail.com> wrote in message
news:r4********************************@4ax.com...
On Tue, 18 Nov 2003 21:35:03 +1030, "A" <A@iprimus.com.au> wrote:
Hi,

I'm having some difficulty understanding the semantics of the rethrow
keyword.


There is no rethrow keyword. I'm going to assume you mean throw.
Consider the following code:

int main(){
try{
...
}
catch(SomeException &SE){
...
}
catch(...){
rethrow;


Rather:
throw;
}
return 0;
}
What is the point of rethrowing the exception caught at catch(...)? Won't
this result in a endless cycle effect?


No, the throw above will just cause the program to terminate (since
the exception will propogate out of main. throw; is used when you want
to do a bit of clean up in the current scope, and then let the
exception propogate up. However, it should be used sparingly - RAII is
a much better technique to handle exception cleanup.

Tom


What do you mean by propogate up? what goes up must come down again? and so
it repeats itself.
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.538 / Virus Database: 333 - Release Date: 10/11/2003
Jul 22 '05 #4
hi!
catch(...){
throw; changed this to throw... }
return 0;
}
What do you mean by propogate up? what goes up must come down again? and

so it repeats itself.

here you throw the expection within the catch. now looking for an
appropriate exception handler starts all over again.
it's not been called within a try in main, so the thrown exception
propagates out of main, and there the default exception handler "is
waiting", which normally terminates the app.

note: throwing an exception in a catch() block does not result in getting
caught within this catch() block, it rather "needs to be thrown" within a
try block for the exception handling to work (except for the default handler
outside of main)

regards,
sev
Jul 22 '05 #5
On Wed, 19 Nov 2003 19:27:41 +1030, "A" <A@iprimus.com.au> wrote:
What do you mean by propogate up? what goes up must come down again? and so
it repeats itself.


I mean propogate up the stack to the function that called the one the
throw; is in. I think you misunderstand what throw; actually does. It
doesn't rethrow the exception from where it was originally thrown, it
throws it from the point of the throw;. Here's an example:

#include <iostream>

class test_exception{};

void foo(int size)
{
std::cout << '3';
int* i = new int[size];
std::cout << '4';
try
{
std::cout << '5';
throw test_exception(); //*
std::cout << "Never here";
}
catch(...)
{
std::cout << '6';
delete[] i;
std::cout << '7';
throw; //throws the exception from here, not from *
std::cout << "Never here";
}
std::cout << "Never here";
}

int main()
{
std::cout << '1';
try
{
std::cout << '2';
foo(100);
std::cout << "Never here";
}
catch(test_exception const&)
{
std::cout << '8';
}
std::cout << '\n';
}

Tom
Jul 22 '05 #6

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

7 posts views Thread by Gil | last post: by
3 posts views Thread by Master of C++ | last post: by
8 posts views Thread by Taylor | last post: by
44 posts views Thread by craig | last post: by
10 posts views Thread by ahaupt | last post: by
24 posts views Thread by Chameleon | last post: by
1 post views Thread by Jason S | last post: by
8 posts views Thread by reuce-google | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.