blob: 165b40da7881edbd683514e9642235080f1b5b0f [file] [log] [blame]
package ncai.funcs;
/**
* @author Petr Ivanov
*
*/
public class ReadMemory03 {
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;
}
}