Search found 1 match
- Tue Sep 23, 2008 1:25 pm
- Forum: devkitARM
- Topic: Catching exceptions
- Replies: 1
- Views: 3586
Re: Catching exceptions
catch() doesn't (and shouldn't) compile so I'll assume you used catch(...). That should catch an std::bad_alloc thrown from operator new, but it's possible that the exception never reached your try-catch block because there was an exception specification somewhere along the way that didn't permit ...