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