This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
throwing exceptions from CNI
- To: java at gcc dot gnu dot org
- Subject: throwing exceptions from CNI
- From: "Nic Ferrier" <nferrier at tapsellferrier dot co dot uk>
- Date: Tue, 03 Jul 2001 15:30:35 +0100
What's the difference (if any) between:
JvThrow ( new XXXException( ... ) );
and:
throw new XXXException( ... );
The CNI doc specifies use of throw but in some of the code I can see
use of JvThrow.
Is there a difference?
Nic