Exception in thread "main" java.lang.NoSuchMethodError: main

This is probably a simple error, but I have been working on what I did wrong for several days. If anyone knows what this is trying to tell me, please let me know.Thanks in advance
[193 byte] By [javanuba] at [2007-10-3 7:55:24]
# 1

Most likely, you are trying to launch a class as an application but the class does not have a method with the signaturepublic static void main(String[] args)

The java.exe application launcher requires a method defined exactly like this.

For future reference, you should always copy and paste the full, exact error message when asking for help.

atmguya at 2007-7-15 2:57:57 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Thank you for the information. I will try it. Also thanks for the advice. Next time (hopefully not too many next times) I will do this.
javanuba at 2007-7-15 2:57:57 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...