User profile: lunchbearington

User info
User name:lunchbearington
Bio:I am trying to teach myself C++ :)
History
Joined:
Number of posts:4
Latest posts:

Exception Handling
[quote]Note that [b]usually[/b] you would throw something that is derived from the std::exception cl...

Exception Handling
[code] int main() { int var1 = 0; cin >> var1; try { if (var1 < 0){throw 1;} } catch (int x)...

Exception Handling
Hi Kevinkjt2000, I actually have seen that link, but I'm confused by the first example. See line in...

Exception Handling
Hi Guys, I do not quite understand how exception handling is done exactly. I understand the "big ...