reflection, loader fix (before it did offer an unloaded (not found) class as loaded...
[cacao.git] / src / native / native.h
index 2dc6b70085fdf3cf96d4ab9e8071ac085383fd31..fe101f36a5d5b37f0f34f06d330cd942f82832c6 100644 (file)
@@ -26,7 +26,7 @@
 
    Authors: Reinhard Grafl
 
-   $Id: native.h 676 2003-11-24 20:50:23Z twisti $
+   $Id: native.h 682 2003-12-01 15:33:30Z jowenn $
 
 */
 
@@ -124,8 +124,13 @@ void stringtable_update();
 /* throw classnotfoundexcetion */
 void throw_classnotfoundexception();
 
+/* throw classnotfoundexcetion with description*/
 void throw_classnotfoundexception2(utf* classname);
 
+/* throw linkageerror with description*/
+void throw_linkageerror2(utf* classname);
+
+
 /* make utf symbol from javastring */
 utf *javastring_toutf(struct java_lang_String *string, bool isclassname);