This is the mail archive of the java@gcc.gnu.org mailing list for the Java project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Exception in thread "main" java.lang.Error: Not implemented
<<No stacktrace available>>public class HelloWorld{public static void main(String args[]){ ThreadTest t=new ThreadTest(); Thread t1=new Thread(t); System.out.println("GCJ For RTEMS in Java!---in HelloWorld.java"); try{ System.out.println(args[100]+"for raise an exception"); }catch(Exception e){ System.out.println(e.getMessage()+"---in an Exception"); } t1.start(); } } class ThreadTest extends Thread{ public void run(){ System.out.println("ThreadTest from HelloWorld!---in a new thread"); } }
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |