* java/lang/natClass.cc (newInstance): Throw InstantiationException
if class has no null-argument constructor.
From-SVN: r73244
+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:
_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);