blob: 2c42d93deb1a32cedcaf73fc91da2f378c536e95 [file] [log] [blame]
package ncai.funcs;
/**
* @author Petr Ivanov
*
*/
public class ReadMemory02 {
static public void main(String args[]) {
special_method();
return;
}
static public void special_method() {
/*
* Transfer control to native part.
*/
try {
throw new InterruptedException();
} catch (Throwable tex) { }
return;
}
}