How to set a profiler in eclipse to profile my JME application

Everything is in the subject. Here is the trace i've got :



java.lang.NoClassDefFoundError: java/util/logging/Handler

at bombastic.jme.BombasticUI.main(BombasticUI.java:66)

Exception in thread "main"



and here is my classpath :



E:userssmqpersodevBombastic;

E:userssmqpersodevBombasticbin;

E:userssmqpersodevJMEbin;

E:userssmqpersodevJMEjmelibjogg-0.0.5.jar;

E:userssmqpersodevJMEjmelibjorbis-0.0.12.jar;

E:userssmqpersodevJMEjmeliblwjgl.jar;

C:j2sdk1.4.2_07



May anybody help me ?

What is your line 66 or BombasticUI? Are you importing java.util.logging.Handler?

BTW, clicking on the error in Eclipse will take you right to the code in question and Eclipse will provide possible solutions (the lightbulb icon in the margin).

line 66 is the begin of the code :

public static void main(String[] args)



and no i'm not importing

java.util.logging.Handler


but

import com.jme.util.LoggingSystem;
import java.util.logging.Level;



any new idea ?