Search:
Forum
General C++ Programming
qn on exception throwing
qn on exception throwing
Oct 28, 2009 at 4:43am UTC
unregistered
(199)
Are these 2 equivalent?
throw
runtime_error(
"error"
);
and
1
2
3
runtime_error error(
"error"
); ...
throw
error;
Last edited on
Oct 28, 2009 at 4:43am UTC
Oct 28, 2009 at 10:42am UTC
kbw
(9488)
They would be if there was no
...
Topic archived. No new replies allowed.
C++
Information
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs