cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
unhandled throw with a catch(...)
unhandled throw with a catch(...)
Jul 12, 2016 at 9:40pm UTC
Magnyz
(1)
I am doing a throw and get an unhandled exception error (VS2012) despite even having a catch(...). Probably I am missing something obvious but I am not sure what. Would be grateful for some assistance.
1
2
3
4
5
6
7
8
9
10
11
try
{
throw
"test err"
; ...
return
; }
catch
(
const
char
* e) { }
catch
(...) { }
Topic archived. No new replies allowed.