X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fvmcore%2Futf8.c;h=fe2da62dbe3817e667f0a7315044cb56fe8c8345;hb=204bf2cdfec73890037af529d67d396d30662a44;hp=364526129029923ea64ed7197031ef7bd95aac7e;hpb=88ac4a880c37a5974a0345c12a9252ad2c6f014a;p=cacao.git diff --git a/src/vmcore/utf8.c b/src/vmcore/utf8.c index 364526129..fe2da62db 100644 --- a/src/vmcore/utf8.c +++ b/src/vmcore/utf8.c @@ -106,6 +106,7 @@ utf *utf_java_lang_InstantiationException; utf *utf_java_lang_InterruptedException; utf *utf_java_lang_NegativeArraySizeException; utf *utf_java_lang_NullPointerException; +utf *utf_java_lang_RuntimeException; utf *utf_java_lang_StringIndexOutOfBoundsException; utf *utf_java_lang_reflect_InvocationTargetException; @@ -350,6 +351,9 @@ void utf8_init(void) utf_java_lang_NullPointerException = utf_new_char("java/lang/NullPointerException"); + utf_java_lang_RuntimeException = + utf_new_char("java/lang/RuntimeException"); + utf_java_lang_StringIndexOutOfBoundsException = utf_new_char("java/lang/StringIndexOutOfBoundsException");