natClass.cc (newInstance): Throw InstantiationException if class has no null-argument constructor.

* java/lang/natClass.cc (newInstance): Throw InstantiationException
        if class has no null-argument constructor.

From-SVN: r73244
This commit is contained in:
Bryce McKinlay 2003-11-04 05:27:10 +00:00 committed by Bryce McKinlay
parent 1b9e6d6484
commit 99f8b2501d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-11-04 Bryce McKinlay <bryce@mckinlay.net.nz>
* java/lang/natClass.cc (newInstance): Throw InstantiationException
if class has no null-argument constructor.
2003-10-30 Mohan Embar <gnustuff@thisiscool.com>
PR libgcj/12647:

View File

@ -688,7 +688,7 @@ java::lang::Class::newInstance (void)
_Jv_Method *meth = _Jv_GetMethodLocal (this, init_name, void_signature);
if (! meth)
throw new java::lang::NoSuchMethodException (_Jv_NewStringUtf8Const (init_name));
throw new java::lang::InstantiationException (getName());
jobject r = JvAllocObject (this);
((void (*) (jobject)) meth->ncode) (r);