C++: rethrow in exception handling

A

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
 
D

Domenico Andreoli

A said:
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
 
T

tom_usenet

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
 
A

A

tom_usenet said:
There is no rethrow keyword. I'm going to assume you mean throw.


Consider the following code:

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.
 
S

Severin Ecker

hi!
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
 
T

tom_usenet

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

Forum statistics

Threads
474,147
Messages
2,570,833
Members
47,380
Latest member
AlinaBlevi

Latest Threads

Top