Execution failed with error code 1.
BUILD FAILED (total time: 22 seconds)

j ai ce probleme et j arrive pas a trouver une solution, j debute avec j2me et netbeans, j aurais besoin de votre aide merci d'avance,

voila le code source enfaite c'est juste la premiere interface de mon application

package hello;

import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;

public class Midlet extends MIDlet implements CommandListener {
private Command E;
private Command C;
private Display D;
private List L;
public Midlet () {
E = new Command ("Exit",Command.EXIT,0);
C = new Command ("Choisir",Command.SCREEN,1);
String liste[] ={"Gestion Projets","Gestion demandes Congés","Depot demande Congés"};
L = new List ("Choix Pour Chef Projet",List.IMPLICIT,liste,null);
}
public void startApp() {
}

public void pauseApp() {
}

public void destroyApp(boolean unconditional) {
}

public void commandAction(Command c, Displayable d) {
if (c == E){
notifyDestroyed();
}
else if (c == List.SELECT_COMMAND) {
switch (L.getSelectedIndex()){
case 0:
System.out.println ("choix 1");
case 1:
System.out.println ("choix 2");
case 2:
System.out.println ("choix 3");
}
}
}
}