This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

CNI & Exception handling


RamrajPrabu Balasubramanian writes:
 > Hi,
 >       The project I'm working on involves writing CNI wrappers to existing 
 > c++ classes that we have. the problem is these c++ classes throw exceptions 
 > and there are a lot of them. I know catching c++ exceptions and rethrowing 
 > them as java exceptions casuses the " mixing java and c++ exceptions in same 
 > translation unit is not  allowed" error.
 >       Getting past this hurdle is very important for us to adopt gcj in our 
 > projects, can some one suggest some ways to handle these c++ exceptions 
 > without changing our existing c++ code ?

The obvious solution is to have a layer that catches C++ exceptions
and returns appropriate flags.  Another layer, separately compiled,
can throw Java exceptions.

Andrew.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]