vote up 2 vote down star

Is there a c++ equivalent of java's

try {
    ...
}
catch (Throwable t) {
    ...
}

I am trying to debug java/jni code that calls native windows functions and the virtual machine keeps crashing. The native code appears fine in unit testing and only seems to crash when called through jni. A generic exception catching mechanism would prove extremely useful.

flag

0% accept rate

9 Answers

vote up 0 vote down

it is not possible (in C++) to catch all exceptions in a portable manner. This is because some exceptions are not exceptions in a C++ context. This includes things like division by zero errors and others. It is possible to hack about and thus get the ability to throw exceptions when these errors happen, but it's not easy to do and certainly not easy to get right in a portable manner.

If you want to catch all STL exceptions, you can do

try { ... } catch( const std::exception &e) { ... }

Which will allow you do use e.what(), which will return a const char*, which can tell you more about the exception itself. This is the construct that resembles the Java construct, you asked about, the most.

This will not help you if someone is stupid enough to throw an exception that does not inherit from std::exception.

link|flag
vote up 1 vote down
  1. Can you run your JNI-using Java application from a console window (launch it from a java command line) to see if there is any report of what may have been detected before the JVM was crashed. When running directly as a Java window application, you may be missing messages that would appear if you ran from a console window instead.

  2. Secondly, can you stub your JNI DLL implementation to show that methods in your DLL are being entered from JNI, you are returning properly, etc?

  3. Just in case the problem is with an incorrect use of one of the JNI-interface methods from the C++ code, have you verified that some simple JNI examples compile and work with your setup? I'm thinking in particular of using the JNI-interface methods for converting parameters to native C++ formats and turning function results into Java types. It is useful to stub those to make sure that the data conversions are working and you are not going haywire in the COM-like calls into the JNI interface.

  4. There are other things to check, but it is hard to suggest any without knowing more about what your native Java methods are and what the JNI implementation of them is trying to do. It is not clear that catching an exception from the C++ code level is related to your problem. (You can use the JNI interface to rethrow the exception as a Java one, but it is not clear from what you provide that this is going to help.)

link|flag
vote up 3 vote down

Someone should add that one cannot catch "crashes" in C++ code. Those don't throw exceptions, but do anything they like. When you see a program crashing because of say a null-pointer dereference, it's doing undefined behavior. There is no std::null_pointer_exception. Trying to catch exceptions won't help there.

Just for the case someone is reading this thread and thinks he can get the cause of the program crashes. A Debugger like gdb should be used instead.

link|flag
Well, as Shy points out, it is possible with the VC compiler. It's not a good idea, but it is possible. – Shog9 Nov 25 '08 at 1:25
yeah with SEH. but not with sane standard c++ techniques :) well if you stick to windows you can nearly do everything :) – Johannes Schaub - litb Nov 25 '08 at 2:08
Mmm... thanks for this tidbit. I've been looking for the answer as to why my null-pointer exceptions aren't beeing caught! – Dalin Seivewright Aug 20 at 11:15
You can catch segfaults with SEH on Windows and signal(2)/sigaction(2) on POSIX systems, which covers that vast majority of systems in use today, but like exception handling, it's not something that should be used for normal flow control. It's more of a "do something useful before dying." – Adam Rosenfield Oct 11 at 16:03
vote up 1 vote down

A generic exception catching mechanism would prove extremely useful.

Doubtful. You already know your code is broken, because it's crashing. Eating exceptions may mask this, but that'll probably just result in even nastier, more subtle bugs.

What you really want is a debugger...

link|flag
vote up 4 vote down

Let me just mention this here: the Java

try 
{
...
}
catch (Exception e)
{
...
}

may NOT catch all exceptions! I've actually had this sort of thing happen before, and it's insantiy-provoking; Exception derives from Throwable. So literally, to catch everything, you DON'T want to catch Exceptions; you want to catch Throwable.

I know it sounds nitpicky, but when you've spent several days trying to figure out where the "uncaught exception" came from in code that was surrounded by a try ... catch (Exception e)" block comes from, it sticks with you.

link|flag
Wasn't useful when it got me! :-) Hehe, thanks though... – McWafflestix Nov 25 '08 at 0:46
Of course, you should never catch Error objects -- if you were supposed to catch them they would be Exceptions. Error objects are completely fatal things, such as running out of heap space etc. – SCdF Nov 25 '08 at 2:03
Neither runtime exceptions which are most of the times GoodProgrammerExpected exceptions!!! – Oscar Reyes Nov 25 '08 at 21:21
vote up 0 vote down

For catch(...) to work on all exceptions make sure that in the C++ settings, "Enable C++ Exceptions" is set to "Yes With SEH Exceptions"
In VS2005 this is under C/C++ -> Code Generation

link|flag
I would recommend the exact opposite. C++ catch should not catch structured exceptions; those exist for another purpose. Catching structured exceptions with catch(...) means your program will continue after, say, a segfault. And that's really bad. – coppro Nov 25 '08 at 1:09
coppro, are you sure? i understand that option like "use SEH to implement c++ exceptions" and not "use c++ exceptions to implement SEH" – Johannes Schaub - litb Nov 25 '08 at 2:09
"coppro" is correct: "catch (...)" will catch structured exceptions. Try it in a simple test program - you can catch null pointer dereferences, for example. In general "catch (...)" is a bad idea, and on Windows with MSVC it's a very bad idea. – DavidK Nov 25 '08 at 9:01
vote up 15 vote down
try{
    // ...
} catch (...) {
    // ...
}

will catch all exceptions in C++, but it's of limited usefulness. Note, for example, the absence of a name for the exception you're catching. You're not guaranteed to get any sort of message at all in that context. You may want to add separate catch clauses for the various exceptions you can catch, and only catch everything at the bottom to record an unexpected exception. E.g.:

try{
    // ...
} catch (const std::exception& ex) {
    // ...
} catch (const std::string& ex) {
    // ...
} catch (...) {
    // ...
}
link|flag
It is a good practice to catch exceptions by const reference. As in: catch(std::exception const & ex) { /* ... */ } – coryan Nov 25 '08 at 1:18
@coryan, Thanks for the reminder. I've been spending too much time in C# land lately. :) – Greg D Nov 25 '08 at 1:51
vote up 2 vote down

You can use

catch(...)

but that is very dangerous. In his book Debugging Windows, John Robbins tells a war story about a really nasty bug that was masked by a catch(...) command. You're much better off catching specific exceptions. Catch whatever you think your try block might reasonably throw, but let the code throw an exception higher up if something really unexpected happens.

link|flag
vote up 2 vote down
try {
   // ...
} catch (...) {
   // ...
}

Note that the ... inside the catch is a real ellipsis, ie. three dots.

However, because C++ exceptions are not necessarily subclasses of a base Exception class, there isn't any way to actually see the exception variable that is thrown when using this construct.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.